As opposed to this question, here I am asking if it's possible to do something like this:\[code\]$(several different selectors).click(function() { console.log("Click");});\[/code\]So if I have something like this:\[code\]<div id="a">A</div><div id="b">B</div><div id="c">C</div>\[/code\]I want to make \[code\]several different selectors\[/code\] select \[code\]#a\[/code\], \[code\]#b\[/code\] and \[code\]#c\[/code\], and then whichever one I click would log "Click". I tried \[code\]$('#a', "#b", "#c")\[/code\] and it doesn't work; can someone help?