lang/jquery

jquery bookmarklet 생성기

C/H 2010. 7. 20. 18:39
google code 에서 jquery를 활용해서 bookmarklet을 쉽게 구현할 수 있다.

하지만 IE8에서는 동작이... 안됨.  아니면 내 컴터만 안되는건가?

javascript:(
  function(e,a,g,h,f,c,b,d){
    if(!(f=e.jQuery)||g>f.fn.jquery||h(f)){
      c=a.createElement("script");
      c.type="text/javascript";
      c.src="http://ajax.googleapis.com/ajax/libs/jquery/"+g+"/jquery.min.js";
      c.onload=c.onreadystatechange=function(){
        if(!b&&(!(d=this.readyState)||d=="loaded"||d=="complete")){
          h((f=e.jQuery).noConflict(1),b=1);f(c).remove()
        }
      };
      a.documentElement.childNodes[0].appendChild(c)
    }
  }
)(window,document,"1.3.2",function($,L){
  /* YOUR JQUERY CODE GOES HERE */
});

 참고 : jQuery Bookmarklet Generator


반응형