Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created October 14, 2014 05:10
Show Gist options
  • Save RyoSugimoto/50ab8031c28266101fb8 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/50ab8031c28266101fb8 to your computer and use it in GitHub Desktop.
ブックマークレットのテンプレート。
javascript: (function () {
var d = document;
if(!window.jQuery){
var s = d.createElement('script');
s.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js';
d.body.appendChild(s);
}
setTimeout(function(){
// ここに処理を書きます。
}, 1000);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment