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


Comments

Popular posts from this blog

Validate Mobile Number with 10 Digits in ASP.Net