Skip to content

Instantly share code, notes, and snippets.

@noel9999
Created September 21, 2014 08:51
Show Gist options
  • Save noel9999/ee70493606edee7d0520 to your computer and use it in GitHub Desktop.
Save noel9999/ee70493606edee7d0520 to your computer and use it in GitHub Desktop.
Chrome載入jquery
var jq = document.createElement('script');
jq.src = "http://code.jquery.com/jquery-latest.min.js";
document.getElementByTagName('head')[0].appendChild(jq);
//Done! Really simple as you imagine!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment