Quote:
Originally Posted by SAC
can i put this inbetween the <head> tags and it will do it for every link on the page
|
you're thinking functions ... not a javascript expert but it may look something like this ... i don't have one.
Code:
<head>
<script language="JavaScript" type="text/JavaScript">
someFunction('some shit'){... your function ...};
anotherFunction('more shit'){... your function ...};
</script>
</head>
then in your links ...
Code:
<a href="funtime" onMouseOver="someFunction('xxx');" onMouseOut="anotherFunction('poop');">javascript</a>