※jQueryブックマークレット改善用 3

by ethertank

HTML

<p>てすとてすとー(・∀・)</p>

JavaScript

//jQuery.noConflict();


(function(d,$,b,s){
    function r(){
        setTimeout(function(){(typeof jQuery=='undefined')?r():b(jQuery);},99);
    }
    if($){b(jQuery);}
    else{
        s=d.createElement('script');
        s.src ='//p.tl/Q9Fz';
        d.body.appendChild(s);
        r();
    }
})(document,this.jQuery,function($){$('*').css({background:'blue',color:'snow'});});


//匿名関数の引数
//  document
//  this.jQuery
//  本体(無名関数)
//  s = ※宣言の省略

//テスト用 (・ω・` )
//onload=alert(typeof s);
//onload = alert($);

//わからんち会長(・∀・)