흠. 뭐 하다보니 필요해서. 결론부터 말하면 Element.fireEvent( '이벤트이름' ) // IE 8 버전 혹은Element.dispatchEvent( '이벤트이름' ) // IE 9 버전, 크롬, 파폭 등등 되겠다. ( 출처 : 언제나처럼 https://stackoverflow.com/questions/2381572/how-can-i-trigger-a-javascript-event-click ) function fireEvent(node, eventName) { // Make sure we use the ownerDocument from the provided node to avoid cross-window problems var doc; if (node.ownerDocument) { doc ..