Exercise:
Use the correct selector to hide all elements with an href attribute.
Hint
Syntax hint: $("[
attribute
]")
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(){ $("selector").hide(); }); </script> </head> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <a href="../html/index.html">HTML Tutorial</a> <a href="../css/index.html">CSS Tutorial</a> </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(){ $("[href]").hide(); }); </script> </head> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <a href="../html/index.html">HTML Tutorial</a> <a href="../css/index.html">CSS Tutorial</a> </body> </html>
Correct Result:
Hide Answer
Privacy Policy