Skip to content

Instantly share code, notes, and snippets.

@matijs
Created November 13, 2012 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matijs/4065707 to your computer and use it in GitHub Desktop.
Save matijs/4065707 to your computer and use it in GitHub Desktop.
Bookmarklet to add jQuery to the current document
javascript:(function(){
if ('jQuery' in window) {
console.log('jQuery '+jQuery.fn.jquery+' already present');
}
else {
var s = document.createElement('script');
s.src = 'http://code.jquery.com/jquery.min.js';
s.onload = function() {
console.log('jQuery '+jQuery.fn.jquery+' loaded.');
};
document.body.appendChild(s);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment