How to get CKEditor content in- jQuery?
How to get CKEditor content in- jQuery? You can use this code var editor = CKEDITOR.instances.Body; //Body is the Id of the CKEditor var varMailBody = editor.getData(); alert(varMailBody); Using this we can get CKEditor Content in Jquery