Jquery: this == event.target

function(event) {
event.target.hide();
}

can replace 'event.target' with 'this' (i.e. what you clicked on)

Comments