View Single Post
Old 08-04-2002, 12:18 AM   #1 (permalink)
abc123
bloomberg
 
abc123's Avatar
 
Join Date: Jun 2002
Location: bloomberg
Posts: 263
abc123 is on a distinguished road
Send a message via AIM to abc123 Send a message via Yahoo to abc123
jscript rollovers

in relation to ur post here: http://www.netwerkin.com/cgi-bin/ult...;f=6;t=000120, milano, its very simple if u are only using the same pictures for on an off

Code:
<script type="text/javascript">

function on(x)
{
x.src="images/on.gif";
}

function off(x)
{
x.src="images/off.gif";
}

</script>

<a href="link.com">
 <img onmouseover="on(this)" onmouseout="off(this)" />
</a>
and its that easy
__________________
-- bloomberg.
abc123 is offline   Reply With Quote