Skip to content

Instantly share code, notes, and snippets.

@m4ttbrock
Created August 29, 2012 21:20
Show Gist options
  • Save m4ttbrock/3519130 to your computer and use it in GitHub Desktop.
Save m4ttbrock/3519130 to your computer and use it in GitHub Desktop.
Simple script to inject jquery and find all img elements on the page.
(function () {
function loadScript(url, callback) {
var script = document.createElement("script")
script.type = "text/javascript";
if (script.readyState) { //IE
script.onreadystatechange = function () {
if (script.readyState == "loaded" || script.readyState == "complete") {
script.onreadystatechange = null;
callback();
}
};
} else { //Others
script.onload = function () {
callback();
};
}
script.src = url;
document.getElementsByTagName("head")[0].appendChild(script);
}
loadScript("https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function () {
//jQuery loaded
$("body").find("img").each(function() {
console.log(this);
});
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment