+ 1
Hide a links
3 Answers
+ 9
<a href = "#" class = "a">Link</a>
// Jquery
var a = $(".a")
a.hide ()
This will hide the link with class a.
+ 3
What's your question exactly?
+ 1
Arushi Singhania you can just use $("a").hide() instead of assigning each a with class a and removing