스마트에디터
본문
스마트에디터 wr_content에대한 focus event 함수를 만드려면 어떤방법이있을까요.
커스텀플러그인만들어서 사용하라고만 나오는데 후... ㅡ..ㅡ 도리도리....
아시는분 답변좀
답변 2
이렇게 한번해보세요. 테스트는 못해봤습니다.
oEditors.getById['wr_content'].exec('FOCUS', []);
write.skin.php 하단에 아래 소스 추가
function start_write() {
$("iframe").contents().find("iframe").contents().find("body").on("focus", function() {
alert("글쓰기 시작");
});
}
/plugin/editor/smarteditor2/smart_editor2_inputarea.html 수정
<body class="se2_inputarea" style="height:0;-webkit-nbsp-mode:normal" onload="parent.parent.start_write();"></body>
테스트 해보니 뭐 이런 방식으로도 가능하네요.
답변을 작성하시기 전에 로그인 해주세요.