I was to stop the event propagation from the child to the parent, i have a bunch of li
tags containing a
.
$('li a[rel=close]').live('click', function(e){
e.stopPropagation();
e.preventDefault();
})
But it doesn;t stop the event.Any suggestions ?