Mega Code Archive

 
Categories / JavaScript DHTML / HTML
 

Height Example

<html> <body> <script>     function function1() {         document.all.myImage.height = "150";     } </script> <img id="myImage"       src="http://www.rntsoft.com/style/logo.png"       alt="http://www.rntsoft.com"> <button onclick="function1();">Change Height to 150</button> </body> </html>