Quote:
Originally Posted by coidn
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..
|
Not exactly, when you use obj.style.width you have to use the +'px'; along with it.
obj.style.width = 300+'px';
I can't tell you how many times I've been caught out by forgetting to include the +'px'