Let's say I have code like this:
$('.myClass').each(function(){
$('#' + $(this).attr('id') + "_Suffix").livequery('click', function(){
doSomething($(this));
});
});
The $(this)
that I pass to the doSomething
function is what's in the second jquery parenthesis - $('#' + $(this).attr('id') + "_Suffix")
. How do I reference what's in the first parenthesis - what the original this referred to? ( $('.myClass').each
)
I assume I could save it into a variable, and then use that variable:
$('.myClass').each(function(){
outerThis = $(this);
$('#' + $(this).attr('id') + "_Suffix").livequery('click', function(){
doSomething($(outerThis));
});
});
But is there any way to reference it without doing this?