Skip to content

Instantly share code, notes, and snippets.

@nczz
Last active August 29, 2015 14:28
Show Gist options
  • Save nczz/362bfd5e3bfe968036b0 to your computer and use it in GitHub Desktop.
Save nczz/362bfd5e3bfe968036b0 to your computer and use it in GitHub Desktop.
jQuery('a').click(function(e){
var url = jQuery(this).attr('href');
if (!/^([javascript]|[mailto])/.test(url)){
e.preventDefault();
location=url+location.search+location.hash;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment