How to disable e.preventDefault for some element

<a href="#" class="externalLink">link</a> $('a').click(function(e){ e.preventDefault(); }); $('.externalLink').click(function(e){ var targetLink = $(this).attr('href'); window.open(targetLink, '_self'); });

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.