Hey, I use jquery, ajax and CKEditor:
$( '.ckeditor' ).ckeditor();
When you first load the page through ajax it ckeditor()starts without a hitch. The second time he fails. Usually when binding, you do something like:
.unbind('click').bind('click',function{...})
What should I do to untie it ckeditor()?
source
share