I am using a technique to display an image very small in the top of the screen then on hover of a link the image is shown full size in the correct area. This is to make it look as though the image is appearing but without the load time.
My script works great in FF but no image displays on hover in IE.
and in the body
Can anyone see why IE is playing up?
My script works great in FF but no image displays on hover in IE.
Code:
<style type="text/css">
a.rackethover img {display:block; position:absolute; width:1px; height:1px; border:0px; top:0px; left:0px;}
a.rackethover:hover img {display:block; position:absolute; top:240px; left:550px; width:150px; height:127px; border:0px;}
</style>
and in the body
Code:
<a href='/images/80.pdf' class='rackethover' target='_blank'>001<img src='/images/bf80.jpg' width='150' height='127' alt=''></a>
Can anyone see why IE is playing up?