function funcName() {
 try {
  // 여기는 원하는 기능 추가
 } catch(e){
  for (x in e){
   alert("e."+x+" == "+eval("e."+x));
  }
 }
}
Posted by [czar]
,