Guest User

Untitled

a guest
May 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="description" content="Id,onclick event, document.getElementById, innerHTML">
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <title>JS Bin</title>
  8. </head>
  9. <body>
  10. <p id="para"> I'm the original content of the paragraph</p>
  11. <button onclick="document.getElementById('para').innerHTML = "I'm replaced content of the paragraph"> Click me to change Paragrap content</button>
  12.  
  13.  
  14. </body>
  15. </html>
Add Comment
Please, Sign In to add comment