0

I'm trying to select multiple ids in one time. Here is my code:

let arr = ['#asd', '#qwe', '#zxc'];

I want to select this 3 element with their ids.

How can I do that?

sundowatch
  • 3,012
  • 3
  • 38
  • 66

1 Answers1

0

This is documentation: click.

This is example:

$('#asd,#qwe,#zxc')
Anton
  • 2,669
  • 1
  • 7
  • 15