예전에 인터넷 익스플로러 9 (IE 9)에서 네이버 스마트 에디터 오류로 인하여 에디터 편집창이 활성화되지 않는 버그가 있어 코드를 아래와 같이 수정하였다. Husky.SE_Basic.js 의 283번째 줄 부근?? 아마.. 이 근처인듯하다. if(this.bIE){button=document.createElement("");} 의 코드를 IE9 에 맞게 아래줄로 바꿔 줌. if(this.bIE&&navigator.appVersion.indexOf("MSIE 9")){button=document.createElement("");}else{button=document.createElement("BUTTON");button.type="button";} 이렇게 수정하였다. IE8 이하버전과 IE9 이후 버전의..