Exercise:
Use a jQuery method to hide the <p> element when it is clicked on.
Hint
Hint: Use the hide() method.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").click(function(){ $(this).method(); }); }); </script> </head> <body> <p>If you click on me, I will disappear.</p> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").click(function(){ $(this).hide(); }); }); </script> </head> <body> <p>If you click on me, I will disappear.</p> </body> </html>
Correct Result:
Hide Answer
Privacy Policy