denniswong34


SUBMITTED BY: denniswong34

DATE: Oct. 28, 2016, 5:30 a.m.

FORMAT: JavaScript

SIZE: 428 Bytes

HITS: 876

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. $("p").hide();
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <h2>This is a heading</h2>
  15. <p>This is a paragraph.</p>
  16. <p>This is another paragraph.</p>
  17. <button>Click me to hide paragraphs</button>
  18. </body>
  19. </html>

comments powered by Disqus