[jQuery] how to refer the whole group within an event function
hi all
is that possible to refere the whole gruop in an event function. such
as the following code, I have to repeat $('#tab_single a') in click
event function. is there a better way to do than that?
$('#tab_single a').click(function(){
browse_rec($('#tab_single a').index($(this)));
});
thank you in advance!
jack