작성일 : 15-07-20 04:00
|
[Script] 즐겨찾기 등록 소스
|
|
|
글쓴이 :
조형래
 조회 : 3,584
|
function favorites(){
if (window.sidebar && window.sidebar.addPanel) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(document.title,window.location.href,'');
} else if(window.external && ('AddFavorite' in window.external)) { // IE Favorite
window.external.AddFavorite(location.href,document.title);
} else if(window.opera && window.print) { // Opera Hotlist
this.title=document.title;
return true;
} else { // webkit - safari/chrome
alert((navigator.userAgent.toLowerCase().indexOf('mac') != - 1 ? 'Command/Cmd' : 'CTRL') + ' + 와 D 를 누르면 즐겨찾기에 등록됩니다.');
}
}
|
|