Meka][Meka Unstopable Posts: 700
| ok this is example of precaching images easily for use with buttons etc like mouse over first in your <head> add the js script
Code: | <script language="Javascript"> { image1 = new Image image2 = new Image image1.src = '/images/image1.gif' image2.src = '/images/image2.gif' } </script> | then on the td of the menu...
Code: | <td onMouseOver="this.background=image2.src" onMouseOut="this.background=image1.src"> | baring in mind it needs also an original background like
Code: | <td background="this.background=image1.src" etc etc> | ; M E K A ;
|