Mega Code Archive

 
Categories / JavaScript DHTML / HTML
 

Change the height of an image

<html> <head> <script type="text/javascript"> function setHeight(){     var x=document.images     x[0].height="250" } </script> </head> <body> <img src="http://www.rntsoft.com/style/logo.png" width="107" height="98" /> <form> <input type="button" onclick="setHeight()" value="Change image height"> </form> </body> </html>