JS IntroductionThis page contains some examples of what JavaScript can do. JavaScript Can Change HTML Content One of many JavaScript HTML methods is getElementById(). The example below "finds" an HTML element (with id="demo"), and changes the element content (innerHTML) to "Hello JavaScript".Exampledocument.getElementById("demo").innerHTML = "Hello JavaScript";Try it Yourself PreviousNext