Skip to content

Instantly share code, notes, and snippets.

@wnghdcjfe
Created January 8, 2017 21:52
Show Gist options
  • Save wnghdcjfe/0360047c2465d113195b2b7ad0a93ae3 to your computer and use it in GitHub Desktop.
Save wnghdcjfe/0360047c2465d113195b2b7ad0a93ae3 to your computer and use it in GitHub Desktop.
check Browser and move chrome
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