Skip to content

Instantly share code, notes, and snippets.

View girlcheese's full-sized avatar
🏠
Working from home

Sam Carrington girlcheese

🏠
Working from home
View GitHub Profile
@girlcheese
girlcheese / inject.javascript.js
Created November 26, 2012 16:28
Inject jQuery into a page
;(function() {
var tag = document.createElement('script');
tag.src = 'http://code.jquery.com/jquery.min.js';
tag.type = 'text/javascript';
tag.async = 'true';
var hookTag = document.getElementsByTagName('script')[0];
hookTag.parentNode.insertBefore(tag, hookTag);
})();