Advertisement
BrU32

JQ Clear HTML Document SRC

Mar 6th, 2017
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <html>
  2. <center>
  3. <body bgcolor="darkgray">
  4. <font color="hotpink">
  5. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function(){
  8. $("button").css("color","darkred");
  9. $("button").css("background-color","skyblue");
  10. $("button").css("font-size","22px");
  11. $("button").mouseup(function(){
  12. $(document).empty().css("color","000000");
  13. });
  14. });
  15. </script>
  16. <div>
  17. <h2>
  18. Demo Text To Be Cleared!!
  19. </h2>
  20. </div>
  21. <p>
  22. <button>Clear The HTML In Document!!</button>
  23. </center>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement