Skip to content

Instantly share code, notes, and snippets.

@m4ttbrock
Created August 29, 2012 21:20
Show Gist options
  • Select an option

  • Save m4ttbrock/3519130 to your computer and use it in GitHub Desktop.

Select an option

Save m4ttbrock/3519130 to your computer and use it in GitHub Desktop.

Revisions

  1. m4ttbrock created this gist Aug 29, 2012.
    34 changes: 34 additions & 0 deletions img find
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,34 @@
    (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);
    });
    });


    })();