Created
January 8, 2017 21:52
-
-
Save wnghdcjfe/0360047c2465d113195b2b7ad0a93ae3 to your computer and use it in GitHub Desktop.
check Browser and move chrome
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
function checkB() { | |
if (navigator.userAgent.indexOf("Trident") != -1) { | |
var msg = "이미지 업로드는 크롬브라우저에서만 가능! 확인 버튼을 누르면 크롬이 다운됩니다."; | |
var r = confirm(msg); | |
if (r == true) { | |
window.open('https://www.google.co.kr/chrome/browser/desktop/', '_blank'); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment