Last active
January 4, 2016 02:09
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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