Skip to content

Instantly share code, notes, and snippets.

@kristiyandobrev
Created July 17, 2015 11:06
Show Gist options
  • Save kristiyandobrev/cab8179ac1a28559b575 to your computer and use it in GitHub Desktop.
Save kristiyandobrev/cab8179ac1a28559b575 to your computer and use it in GitHub Desktop.
$(document).on('click', 'a[target="_blank"]', function(ev) {
var url;
ev.preventDefault();
url = $(this).attr('href');
window.open(url, '_system');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment