Цитата:
|
Даешь онмаусовер на ссылки!!!!!!
|
информация к размышлению...

Код:
<script>
document.onmouseover = doMouseOver;
document.onmouseout = doMouseOut;
document.onclick = doMouseClick;
function doMouseOver()
{
var se=window.event.srcElement;
if (se._href || se._script)
{
se.style.color='#000000';
se.style.textDecoration='underline';
}
if (se._hint)
{
status=se._hint;
}
}
function doMouseClick()
{
var se=window.event.srcElement;
if (se._href)
{
document.location.href=se._href;
}
if (se._script)
{
eval(se._script);
}
}
function doMouseOut()
{
var se=window.event.srcElement;
if (se._href || se._script)
{
se.style.color='';
se.style.textDecoration='';
}
if (se._hint)
{
status='';
}
}
</script>
<любой_тег(или почти любой

_hint="ссылочка" _href="http://ссылкочка">
или
<любой_тег(или почти любой

_hint="алертик" _href="alert(\"ghbrjk

\")">