Possible Duplicates:
What does this mean in jquery $('#id', javascript_object);
What does $(''class for the same element', element) mean?
What does the second argument to $() mean?
Anyone know what are:
$('element', $$).function(){...};
And
$('element', this).function(){...};
?
Is the same thing as
In fact, that is the way it is rewritten and run internally. It is called the “context selector”.
From the jQuery source: