Skip to content

Instantly share code, notes, and snippets.

View yuka2py's full-sized avatar

yuka2py yuka2py

View GitHub Profile
@yuka2py
yuka2py / gist:6148288
Last active December 20, 2015 14:39 — forked from miya0001/gist:6145701
ページ内のjQueryの有無に関わらず、別のjQueryをロードしてスクリプトで利用する。既存のjQueryがあれば、それを変更しない。 ブックマークレットなどでの利用を想定。
(function(func){
var jq = document.createElement('script');
jq.src = '//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js';
jq.async = 1;
jq.onload = function() {
document.body.removeChild(jq);
func(jQuery.noConflict(true));
};
document.body.appendChild(jq);
})(function($){