Skip to content
Advertisement

document.querySelector multiple data-attributes in one element

I’m trying to find an element with document.querySelector which has multiple data-attributes:

JavaScript

I thought about something like this:

JavaScript

But it does not work.
However, it works well, if I put the second data-attribute in a child-element like:

JavaScript

So, is there an option to search for both attributes at once?
I’ve tried several options but I don’t get it.

Advertisement

Answer

There should not be a space between the 2 selectors

JavaScript

if you give a space between them it will become a descendant selector, ie it will search for an element attribute data-period="current" which is inside an element with data-point-id="7febe088-4eca-493b-8455-385b39ad30e3" like

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