View Single Post
10-26-2006, 03:29 AM
#2
Andrew R is offline Andrew R
Status: Request a custom title
Join date: Dec 2005
Location: Arizona
Expertise:
Software:
 
Posts: 5,200
iTrader: 17 / 95%
 

Andrew R is on a distinguished road

  Old

Yup, javascript is your best bet.. :hover doesn't work on non-anchor elements in IE.

<img src="1.gif" onMouseOver="this.src='2.gif'" onMouseOut="this.src='1.gif'" />

That's as basic as you can get.

From there, you can make a function in javascript to execute the same thing multiple times using less obstructive code.