10-05-2010, 03:17 PM
De mémoire, sans garanti, j'aurais plutôt eu tendance, à passer le live dans l'autre sens :
Code PHP :
<?php
$('.territory').bind('click', function(event){
log('Territory "' + $(this).attr('data-name') + '" was clicked!');
$.ajax({
url: $(this).attr('data-territory-url') + '.js',
type: 'GET',
dataType: 'script'
});
});
$('.territory').live('click', function(event){
if( $(event.target).is('.interaction-mark') )
{
log("Interaction mark clicked!");
}
});
En tout cas la propagation est normal.