jQuery2011. 6. 23. 13:40

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if( typeof jQuery == 'undefined' )
{
   var jQ = document.createElement( 'script' );
   jQ.type = 'text/javascript';
   jQ.onload = runthis;
   document.body.appendChild( jQ );
}
else
   runthis();
 
function runthis()
{
   // your JavaScript code goes here!
}

링크 : http://spyrr.tistory.com/29

Posted by 버려진Eye