Answers for "How can I select all elements without a given class in jQuery?"

0

How can I select all elements without a given class in jQuery?

$("ul#list li").not(".active") // not method
$("ul#list li:not(.active)")   // not selector
Posted by: Guest on July-09-2021

Code answers related to "How can I select all elements without a given class in jQuery?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language