인터넷 한겨레에서 엿보는 모바일 클라이언트에 대한 포워딩 예제 출처 : http://www.hani.co.kr/section-homepage/include/10/js/mhani.js function chkMobile() { var ret = ''; var mobileAgents = new Array('iPhone', 'iPod', 'iPad', 'Mobile', 'Windows CE', 'BlackBerry', 'Android', 'LG', 'MOT', 'SAMSUNG', 'SonyEricsson'); for (var key in mobileAgents){ if (navigator.userAgent.indexOf(mobileAgents[key])>=0) { ret = (mobileAgents[key]==..