브라우저명과 모바일, PC브라우저 체크
1. 모바일 브라우저라면 모바일 브라우라우저라고 출력하고 PC브라우저라면 PC브라우저라고 출력하기.2. 브라우저 종류 출력하기 broswerChk.js 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455var broswer = {}; broswer.isMobile = function() { var tempUser = navigator.userAgent; var isMobile = false; // userAgent 값에 iPhone, iPad, ipot, Android 라는 문자열이 하나라도 존재한다면 모바일로 간주됨. if (tempUser.indexOf("iPhone") ..