Javascript examples for DOM HTML Element:Image
Image width Property - Change the height and width of an image to 300px:
<!DOCTYPE html> <html> <body> <img id="myImg" src="http://java2s.com/resources/a.png" width="107" height="98"> <button onclick="myFunction()">Test</button> <script> function myFunction() {//from w w w .jav a 2s .c o m document.getElementById("myImg").height = "300"; document.getElementById("myImg").width = "300"; } </script> </body> </html>