ckeditor 유용한 스크립트, 명령어 (4.1 이상)
- ckeditor 사이즈 변경방식. 1. 로드할때 사이즈 지정 window.onload=function(){ CKEDITOR.replace('MCONT', {width:'100%', height:'300px'}); } 2. 텍스트에어리어 위의 Div나 td 사이즈를 조절 3.자바스크립트사용 CKEDITOR.instances.MCONT.resize( 900, 300 ); - 내용가져오기 function get_editor_data(id){//가져오기 //id 는 텍스트에어리어의 name or id var obj = eval('CKEDITOR.instances.'+id) var editor_data = obj.getData(); return editor_data; } - 에디터 적용 1.textarea 모..