Created
July 23, 2012 04:42
-
-
Save riix/3161989 to your computer and use it in GitHub Desktop.
시작페이지, 즐겨찾기 추가 버튼
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 시작페이지 설정 | |
$('#util a[href="#bookmark"]').on('click', function(event){ | |
event.preventDefault(); | |
if($.browser.msie){ | |
window.external.AddFavorite('http://www.epasshakjum.co.kr', '이패스학점 - 평생교육의 실현'); | |
} else { | |
alert('죄송합니다.\nInternet Explorer 만 지원하는 스크립트입니다.\n브라우저 내장 기능을 사용해주세요.\nFireFox 의 경우 Ctrl+D의 단축키를 제공합니다.'); | |
} | |
}); | |
// 즐겨찾기 | |
$('#util a[href="#homepage"]').on('click', function(event){ | |
event.preventDefault(); | |
if($.browser.msie){ | |
document.body.style.behavior='url(#default#homepage)'; | |
document.body.setHomePage('http://www.epasshakjum.co.kr'); | |
} else { | |
alert('죄송합니다.\nInternet Explorer만 지원하는 스크립트입니다.\n브라우저 내장 기능을 사용해주세요.\nFireFox의 경우 \'설정 > 일반 > 홈페이지\'에 해당 옵션이 있습니다.'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment