/ Published in: jQuery
see http://www.undolog.com/2009/08/21/impedire-la-propagazione-degli-eventi-con-jquery/ for detail
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('a#mylink').click( function(event) { document.location = event.target.href; event.stopPropagation(); event.preventDefault(); } );
URL: http://www.undolog.com/2009/08/21/impedire-la-propagazione-degli-eventi-con-jquery/