Skip to content

Instantly share code, notes, and snippets.

@x
Created April 23, 2013 22:42
Show Gist options
  • Save x/5448037 to your computer and use it in GitHub Desktop.
Save x/5448037 to your computer and use it in GitHub Desktop.
Add jQuery bookmarklet. Use this to get jQuery on any webpage to use in your browser's JavaScript console.
javascript:(function(){var jq = document.createElement('script');jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js";document.getElementsByTagName('head')[0].appendChild(jq);jQuery.noConflict();})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment