Quote:
Originally Posted by DrDOS
See how I have added a line here. This is the code you need to include for FF and other browsers. And I also added for the hidden part.
Code:
imgbox.style.visibility='visible';
imgbox.style.display = 'block';
This is for the hidden.
imgbox.style.visibility='hidden';
imgbox.style.display = 'none';
You're welcome.
|
Hi... thank you...
It wasnt exactly what i needed but helped me to understand what had to be done...
ff and chrome cant understand "imgbox.style.width"
they only need to be converted to "imgbox.width" for the zooming effect to work on ff and chrome..