how can i select all elements without a given class in jquery 3f

Solutions on MaxInterview for how can i select all elements without a given class in jquery 3f by the best coders in the world

showing results for - "how can i select all elements without a given class in jquery 3f"
Jonas
28 Jan 2019
1$("ul#list li").not(".active") // not method
2$("ul#list li:not(.active)")   // not selector
3