Skip to content
Advertisement

ele = document.querySelector(el) for multiple instances of el

I have a swipe detection function detectswipe(el, func) that listens for data-animate="swipe" and runs the function swipe(el, d) when swiped on mobile. The problem is it only runs on the first instance of data-animate="swipe" and not every instance.

How do I change my code to run on every instance of data-animate="swipe"?

JavaScript
JavaScript
JavaScript

Advertisement

Answer

To boil it down to the basics:

JavaScript

Event delegation could also work here but we don’t know much about the structure of your document.

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