Skip to content
Advertisement

create onclick event for multiple ids

I have written a js function:

JavaScript

Problem is, since I have more clickable objects with various IDs, i wanted to create a single script/function that would accept onclick event from not only #id1, but also #id2, #id3 etc…

I tried following advice found here: https://stackoverflow.com/a/18508894/11271927 and here https://stackoverflow.com/a/18508907/11271927 but whenever I would edit the code to acomodate my code structure, it wouldnt work.

JavaScript

Essentially, this code doesnt do anythign on click.

If you know what I have missed or done wrong, please help.

Advertisement

Answer

If you want to have one function that will have a click listener on several elements (for example by class) you can try it like this:

JavaScript
Advertisement