Jquery 즐겨찾기 사이트 코드

841 단어 jquery

//        
jQuery.fn.addFavorite = function(l, h) {  
    return this.click(function() {  
        var t = jQuery(this);  
        if(jQuery.browser.msie) {  
            window.external.addFavorite(h, l);  
        } else if (jQuery.browser.mozilla || jQuery.browser.opera) {  
            t.attr("rel", "sidebar");  
            t.attr("title", l);  
            t.attr("href", h);  
        } else {  
            alert("   Ctrl+D        !");  
        }  
    });  
};  
$(function(){  
    $('#fav').addFavorite('XXX  ',location.href);  
});


<a href="javascript:;" title="    !" id="fav">  </a>

좋은 웹페이지 즐겨찾기