[jQuery] accessing html() attributes inside an event
hi,
I would like to do something like this ...
$('td[@id^=customer]').click(function(e){
alert(e.target.html());
});
but it's not working ...
can I avoid this ... $('td[@id='+e.target.id+']').html()
Thanks
james