Last active
August 29, 2015 13:56
-
-
Save coldhawaiian/9178240 to your computer and use it in GitHub Desktop.
A bookmarklet for injecting jQuery into any web page (jQuerifying, or jQuerification). Might need to call jQuery.noConflict() if there are problems with $ variable.
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
<a href="javascript:(function () { var script = document.createElement('script'); script.src = 'https://code.jquery.com/jquery-1.11.0.min.js'; var head = document.getElementsByTagName('head')[0]; head.appendChild(script); })();"> | |
jQuerify | |
</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment