Created
October 14, 2014 05:10
-
-
Save RyoSugimoto/50ab8031c28266101fb8 to your computer and use it in GitHub Desktop.
ブックマークレットのテンプレート。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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