jquery/javascript: function(e){.... what is e? why is it needed? what does it actually do/accomplish?

Viewed 86567
$('#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..

4 Answers
Related