Javascript examples for DOM:Quiz
Use the innerHTML property to change the content of the <h1> element to "New Header".
<!DOCTYPE html> <html> <body> <h1 id="myHeader">Give Me a New Header</h1> <script> document.getElementById("myHeader").innerHTML = "New Header"; </script>/*from ww w .j a v a2 s.c o m*/ </body> </html>