Skip to content

Instantly share code, notes, and snippets.

@rtomayko
Created August 6, 2010 06:07
Show Gist options
  • Save rtomayko/510915 to your computer and use it in GitHub Desktop.
Save rtomayko/510915 to your computer and use it in GitHub Desktop.
hotload jquery
// paste this into firebug or chrome console or whatever
// to load jquery into pages that dun have it
j=document.createElement("SCRIPT");
j.src="http://code.jquery.com/jquery-latest.pack.js";
document.getElementsByTagName("HEAD")[0].appendChild(j);
@nakajima
Copy link

nakajima commented Aug 6, 2010

@rtomayko
Copy link
Author

rtomayko commented Aug 6, 2010

That's exactly what I was hoping for. Thanks Pat.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment