Skip to content

Instantly share code, notes, and snippets.

@kennberg
Last active January 4, 2016 02:09
Show Gist options
  • Save kennberg/8553528 to your computer and use it in GitHub Desktop.
Save kennberg/8553528 to your computer and use it in GitHub Desktop.
Bookmarklet that injects jQuery into the page, so jQuery can be used right inside the Chrome Development Tools > Console until you refresh or change the tab.
javascript:(function(){d=document;jq=d.createElement('script');jq.src ="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";d.getElementsByTagName('head')[0].appendChild(jq);setTimeout(function(){jQuery.noConflict();},1000);})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment