I'm following the tutorial of CKEditor, and I did this:

 $( '#editor' ).ckeditor(function(){});  //great works!!

But now...when I submit the form...I see that by default, the textarea has <p></p>. How do I make it "nothing" by default?

link|improve this question

feedback

2 Answers

Try setting the following config values:

CKEDITOR.config.enterMode = CKEDITOR.ENTER_BR;
CKEDITOR.config.shiftEnterMode = CKEDITOR.ENTER_P;

Make sure that you clear your browser cache when you modify them as changes might not be picked up automatically.

link|improve this answer
Hi Darin, sorry I meant...how can I get rid of the default wrapper? (on init, I want nothing inside the textarea). Right now, on init there is a <p></p> inside the textarea – TIMEX Dec 11 '11 at 11:34
But this is nice to know (please leave your current answer up here, this is good reference!) – TIMEX Dec 11 '11 at 11:38
feedback

I am using this

CKEDITOR.instances.MainContent_notificationText.setData( '' );

for my non-jQuery plugin version and it works great.

For your jQuery plugin you could use

$('#editor').ckeditor(function(){
  this.setData("");
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.