Javascript examples for DOM HTML Element:Image
Image width Property - Return the width of an image that has been styled with CSS:
<!DOCTYPE html> <html> <body> <img id="myImg" src="http://java2s.com/resources/a.png" style="width:250px;height:300px;"> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/* w w w. j a v a 2 s . c o m*/ var x = document.getElementById("myImg").width; document.getElementById("demo").innerHTML = x; } </script> </body> </html>