Guest User

Untitled

a guest
Dec 12th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <p id="intro">Hello World!</p>
  6.  
  7. <p>This example demonstrates the <b>getElementById</b> method!</p>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. var myElement = document.getElementById("intro");
  13. document.getElementById("demo").innerHTML =
  14. "The text from the intro paragraph is " + myElement.innerHTML;
  15. </script>
  16.  
  17. </body>
  18. </html>
Add Comment
Please, Sign In to add comment