Skip to content

Instantly share code, notes, and snippets.

@yoonchulkoh
Created October 3, 2011 12:12
Show Gist options
  • Save yoonchulkoh/1258979 to your computer and use it in GitHub Desktop.
Save yoonchulkoh/1258979 to your computer and use it in GitHub Desktop.
jQueryが使えないサイトでブックマークレットとかやりたいときにjQueryを追加する
var script = document.createElement("script");
script.setAttribute("type", "text/javascript");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js");
document.body.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment