Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery multiple selectors including 'this' - best clean syntax

So I know you can use multiple selectors like so

$("#div_1 , #div_2").doStuff......

But

I want to select 'this' (based on a rollover function) and another element on the page.

I have tried a number of things and cant seem to get it to work.

$("this , #div_2").doStuff......//not working // 
$(this ", #div_2").doStuff......//not working // 
$(this" #div_2").doStuff......//not working // 

Seems easy but still cant get it to work.

Thanks in advance

S

like image 847
megaSteve4 Avatar asked Dec 10 '10 16:12

megaSteve4


1 Answers

You can use the add() method:

$(this).add("#div_2").doStuff();
like image 90
Frédéric Hamidi Avatar answered Oct 23 '22 15:10

Frédéric Hamidi