Combine two selectors with one jQuery object

$("#addNew_tab, #sendCom_tab").click(function(){
      //do stuff
});

Changed from:

$("#addNew_tab", "#sendCom_tab")

To:

$("#addNew_tab, #sendCom_tab")

comma inside the selector("a, b") means the first plus the second; Just like with CSS selectors
(Well, it’s a CSS selector…)

jQuery(selector)

Description: Accepts a string containing a CSS selector which is then used to match a set of elements.

It’s equal to:

$("#addNew_tab").add("#sendCom_tab")...

Leave a Comment