Javascript examples for DOM HTML Element:Image
center images on a web page for all screen sizes
<html> <head> <style> </style> </head> <body> <div href="#" style="width:100%;background-color:yellow;"> <>//from w ww .j a va2s.c o m <img src="http://www.java2s.com/style/download.png"> </div> <script> if (document.getElementById('hello')) { document.getElementById('hello').innerHTML = 'Hello World - this was inserted using JavaScript'; } </script> </body> </html>