With this HTML
<div>
<button>
<img src="https://img.skitch.com/20110912-1m2qj31m7sxmh46uheef63gutu.gif">
</button>
</div>
and this jQuery
$(document).ready(function() {
$("body").live("click", function(event) {
$("body").append(event.target.tagName);
});
});
Why is the event target node in Chrome the image and in Firefox it's the button?
jsfiddle test -> http://jsfiddle.net/MikeGrace/YC5A7/
.liveand.delegateare converted into.onmethods internally. However, it's still true that you're better off assigning.onto the closest DOM container (.delegatestyle) instead of the entire document (.livestyle) whenever possible. – Blazemonger May 18 '12 at 13:40