Created
July 16, 2013 11:52
-
-
Save pastak/6008052 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
| var s = document.createElement('script'); | |
| s.type = 'text/javascript'; | |
| s.src = 'http://code.jquery.com/jquery-2.0.3.min.js'; | |
| document.body.appendChild(s); | |
| var timer=setInterval(function(){ | |
| if($){ | |
| clearInterval(timer); | |
| /*jQuery読み込んでたら($関数が存在すれば)以下を実行*/ | |
| $('td>a'); | |
| } | |
| },100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment