DOM Level 2 Propagation Example
$(function(){
$('*').bind('click',function(event) {
var current = this;
say('Capture for ' + current.tagName + '#'+ current.id +
' target is ' + event.target.id);
});
});
function say(text) {
$('#console').append(''+text+'');
}
Wyszukiwarka