getElementById() Change HTML content document.getElementById("demo").innerHTML = "Hello JavaScript"; finds HTML element (with id="demo") and changes the elemtn content (innerHTML) to "Hello" What Can JavaScript Do? JavaScript can change HTML content. Click Me! *javascript accepts both double and single quotes Change HTML Attribute Values "document.getElementById('myImage').src='pic_bulbon.gif'" ..