Advertisement
Guest User

Salpit

a guest
Sep 19th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title></title>
  6. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  7.  
  8. </head>
  9. <body>
  10.  
  11. <p>Hi I'm learning jQuery</p>
  12. <p>Second paragraph</p>
  13. <button id="btnChange">Change Content</button>
  14.  
  15. <script>
  16. $(document).ready(function () { // wait for webpage finished loading (ready)
  17. $("#btnChange").click(function () {
  18. $("p").html("New content here");
  19.  
  20. $("p:first").css("color", "red");
  21. });
  22. });
  23. </script>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement