Advertisement
ZEdKasat

Untitled

Dec 8th, 2021
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Demo Javascript</title>
  5. <style>
  6. #th1{
  7. background-color: lightcoral;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <h1 id="th1">This has id th1</h1>
  13. <button id="ch_btn">Change</button>
  14. <script>
  15. function clickBtn(){
  16. var titleh1 = document.querySelector("#th1");
  17. titleh1.style.backgroundColor = "lightblue";
  18. }
  19.  
  20. var changebutton = document.querySelector("#ch_btn");
  21. changebutton.addEventListener('click', clickBtn);
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement