Reputation: 110950
Given a live('blur', function(e) {} how can you get the attr('id') of the clicked item that triggered the blur?
Upvotes: 2
Views: 2216
Reputation: 3003
.live('blur', function(e) { var id = $(this).attr('id'); }
Upvotes: 1