Skip to content

Instantly share code, notes, and snippets.

@alexandrino
Created July 15, 2013 19:54
Show Gist options
  • Save alexandrino/6002887 to your computer and use it in GitHub Desktop.
Save alexandrino/6002887 to your computer and use it in GitHub Desktop.
Add jQuery to any page that does not have it already.
// 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);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment