I have a onclick event handler to try and zoom an image to twice it's size. By my way of thinking it should work but it doesn't!!. Can anyone tell me where my logic is messed up?
All help greatly appreciated.
Glen
Code:
<img src="image.gif" style = "width:125; height:272;" alt="My Picture"onClick="this.style.width*2;this.style.height*2;">
Glen