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
以上就是jquery multiple selectors including 'this' - best clean syntax的详细内容,更多请关注web前端其它相关文章!