<script type="text/javascript">
//즐겨찾기추가
function bookmark()
{
if(window.sidebar && window.sidebar.addPanel){ // Firefox
window.sidebar.addPanel(document.title, location.href,"");
}else if(window.opera && window.print){ // Opera
var elem = document.createElement('a');
elem.setAttribute('href',location.href);
elem.setAttribute('title',document.title);
elem.setAttribute('rel','sidebar');
elem.click();
}
else if(document.all){ // Internet Explorer
window.external.AddFavorite(location.href, document.title)
}
else{
alert("이용하시는 웹 브라우저는 기능이 지원되지 않습니다.\n\nCtrl+D 키를 누르시면 즐겨찾기에 추가하실 수 있습니다.");
return true;
}
}
</script>
<img src="./images/w_icon4.gif" alt="즐겨찾기 추가" title="즐겨찾기 추가" onclick="bookmark()" style="cursor:pointer"/>
반응형
'Javascript' 카테고리의 다른 글
javascript 에서 number_format 사용하기 (0) | 2013.07.12 |
---|---|
iScroll 스크롤 현재위치 알아내기 (0) | 2013.06.21 |
이메일 유효성 검사 (0) | 2013.05.20 |
javascript 모바일 기기 구분 (2) | 2013.04.26 |
배열선언 (0) | 2013.04.04 |