Skip to content
Advertisement

Target Elements without specific className

I’m new to JS, but I was hoping there might be a selector like document.getElementsByClassName("div:not(div-1)") that selects elements by class name, unless they also have another class name, that I can define.

Basically my project is a list of movies and their genres.
Using an onclick function, if you click on a genre, I’m trying to hide all other movies that don’t belong to that genre. Now I’m looking for a way to select the DIVs without having to add a “not-comedy”, “not-action”, etc… class to every single movie.
So far I got this:

JavaScript

Advertisement

Answer

Use querySelectorAll with i.e: the :not() selector

JavaScript
JavaScript
JavaScript

or if you want to do the class check inside the loop use classList.contains()

JavaScript
JavaScript
JavaScript

if you want to filter out some Elements, use .filter()

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement