views:

1231

answers:

1

So I've taken a look at this some comma notation in this tutorial using jQuery. The link is here: http://jqueryfordesigners.com/coda-popup-bubbles/.

After looking at all the selectors on the jQuery site, I can't seem to find out what this ', this' notation represents.

Any answers?

Here's a quick snippet:

var popup = $(popup, this).css('opacity', 0);

+8  A: 

the second argument in the selector is a context for search .. $(a,b) is the same as $(b).find(a)

more information can be found right here

Scott Evernden
Thank you! This has solved my issue.
If it solved it, please mark it as the accepted answer :)
alex