[jQuery] nested each - how to access parent's this??
Hi all,
I'm new to jQuery and just got stuck on a problem where I'm having 2
nested $.each methods and need to access this of the parent each loop,
is this possible at all??
return this.each(function() {
$(selector).each(function() {
// how do i get reference to this in parent each?? :-(
});
});
any help appreciated
M