Skip to content

Instantly share code, notes, and snippets.

@jamesvg
jamesvg / init.js
Last active September 1, 2016 16:09
jQuery(document).ready(function($){
var body = $(document.body);
body.on('click', 'a[rel~="external"], a[target="_blank"]', function(e) {
e.preventDefault();
var destination = window.open();
destination.opener = null;
destination.location = this.href;
return false;
});
});