Skip to content

Instantly share code, notes, and snippets.

@bradoyler
Created November 29, 2013 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bradoyler/7702201 to your computer and use it in GitHub Desktop.
Save bradoyler/7702201 to your computer and use it in GitHub Desktop.
// jquerify.js // https://github.com/bgrins/devtools-snippets // Add jQuery to any page that does not have it already.
(function() {
if (!window.jQuery) {
var s = document.createElement('script');
s.setAttribute('src', '//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js');
document.body.appendChild(s);
console.log('jquery loaded!');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment