$(function() {
if( CKEDITOR.instances['editor-form-id'] ) {
CKEDITOR.instances['editor-form-id'].destroy();
}
CKEDITOR.replace('editor-form-id', {height: ['300px']});
});
[태그:] javascript
모달창에서 버튼 클릭이 안될때
어느정도 몇번 클릭하다가 클릭 이벤트가 발생하지 않을 때
보통 이렇게 쓸텐데
$("#selector").click(function() {});
이렇게 바꾼다.
$(document).on("click", "#selector", function(event){
console.log("done");
});
참고 : http://stackoverflow.com/questions/17455906/button-click-not-firing-in-modal-window-bootstrap