Reputation: 1834
i want to select all h1 tags except myclass with jQuery. For example i want select < h1> but i don't want to select < h1 class="myclass">
Thanks
Upvotes: 2
Views: 77
Reputation: 655795
Try the :not()
selector or not
method:
$("h1:not(.myclass)")
$("h1").not(".myclass")
Upvotes: 5