Created
January 17, 2012 23:16
-
-
Save kevinslin/1629701 to your computer and use it in GitHub Desktop.
Include Jquery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
down vote accepted | |
From http://erikvold.com/blog/index.cfm/2010/6/14/using-jquery-with-a-user-script | |
// ==UserScript== | |
// @name jQuery For Chrome (A Cross Browser Example) | |
// @namespace jQueryForChromeExample | |
// @include * | |
// @author Erik Vergobbi Vold & Tyler G. Hicks-Wright | |
// @description This userscript is meant to be an example on how to use jQuery in a userscript on Google Chrome. | |
// ==/UserScript== | |
// a function that loads jQuery and calls a callback function when jQuery has finished loading | |
function addJQuery(callback) { | |
var script = document.createElement("script"); | |
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"); | |
script.addEventListener('load', function() { | |
var script = document.createElement("script"); | |
script.textContent = "(" + callback.toString() + ")();"; | |
document.body.appendChild(script); | |
}, false); | |
document.body.appendChild(script); | |
} | |
// the guts of this userscript | |
function main() { | |
alert("There are " + $('a').length + " links on this page."); | |
} | |
// 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