I have two divs with id’s: #addNew_tab and #sendCom_tab.
I’d like clicking on either of these to trigger the same jQuery click() function.
I was thinking something like:
$("#addNew_tab", "#sendCom_tab").click(function(){
//do stuff
});
but that doesn’t work.
Changed from:
To:
comma inside the selector(
"a, b")means the first plus the second; Just like with CSS selectors(Well, it’s a CSS selector…)
It’s equal to: