When I use the following jquery live function
$("a[rel]").live('click', function () {
e.preventDefault();
alert('clicked');
});
e.preventDefault();
does not work, because the action behind the a
tag is still fired.
How do I prevent an event when I use jQuery.live?