Skip to content

Instantly share code, notes, and snippets.

@ikennaokpala
Created March 15, 2011 09:17
Show Gist options
  • Save ikennaokpala/870487 to your computer and use it in GitHub Desktop.
Save ikennaokpala/870487 to your computer and use it in GitHub Desktop.
Load jQuery File to Firebug Console
var s = document.createElement('script');
s.setAttribute('src', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js');
document.body.appendChild(s);
s.onload=function(){
// alert("hello")
//Js code
};
void(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment