$('#myTable').click(function(e) {
var clicked = $(e.target);
clicked.css('background', 'red');
});
Can someone explain this to me, and explain why e is needed, and what it actually does..
$('#myTable').click(function(e) {
var clicked = $(e.target);
clicked.css('background', 'red');
});
Can someone explain this to me, and explain why e is needed, and what it actually does..