즐겨찾기 버튼을 추가하고 싶습니다.
본문
즐겨찾기 버튼을 추가하고 pc에서는 즐겨찾기에 추가되고
모바일에서는 바탕화면에 바로가기가 생기도록 하고싶습니다.
<script>
$(document).ready(function(){
$('#favorite').on('click',
function(e) {
var bookmarkURL = window.location.href;
var bookmarkTitle = document.title;
var triggerDefault = false;
if (window.sidebar && window.sidebar.addPanel) {
// Firefox version < 23
window.sidebar.addPanel(bookmarkTitle,
bookmarkURL,
'');
}else if ((window.sidebar && (navigator.userAgent.toLowerCase().indexOf('firefox') < -1)) || (window.opera && window.print)) {
// Firefox version >= 23 and Opera Hotlist
var $this = $(this);
$this.attr('href',
bookmarkURL);
$this.attr('title',
bookmarkTitle);
$this.attr('rel',
'sidebar');
$this.off(e);
triggerDefault = true;
}else if (window.external && ('AddFavorite' in window.external)) {
// IE Favorite
window.external.AddFavorite(bookmarkURL,
bookmarkTitle);
}else {
// WebKit - Safari/Chrome
alert((navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Cmd' : 'Ctrl') + '+D 를 이용해 이 페이지를 즐겨찾기에 추가할 수 있습니다.');
}return triggerDefault;
});
});
</script>
<li><a href="#" id="favorite" title="즐겨찾기 등록"><img src="<?=G5_IMG_URL?>/t_btn04.png" alt="img"/></a></li>
이렇게 짜놓으니까 모바일에서도 ctrl+D를 누르면 추가된다고 하는데
저런 문구 없이 버튼 클릭하면 바로 추가될 수 있도록 하는 기능 구현해보신 분 계실까요?
제발 도와주세요ㅠㅠ