Skip to content

Instantly share code, notes, and snippets.

@fastmover
Forked from eristoddle/tampermonkey.jquery.js
Last active January 18, 2016 23:06
Show Gist options
  • Save fastmover/5406923 to your computer and use it in GitHub Desktop.
Save fastmover/5406923 to your computer and use it in GitHub Desktop.
Open all links on a page in new windows.
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
function main(){
//Open All Links on page in new windows
$.each($('a'), function(index, obj) {
window.open(obj.href, index);
});
}
// load jQuery and execute the main function
addJQuery(main);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment