Skip to content

Instantly share code, notes, and snippets.

@coldhawaiian
Last active August 29, 2015 13:56
Show Gist options
  • Save coldhawaiian/9178240 to your computer and use it in GitHub Desktop.
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.
<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