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
You can use the add() method:
$(this).add("#div_2").doStuff();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With