How can I disable CKEditor to get me every time , when i don\'t want them? I\'m using CKEditor with jQuery adapter.
I don\'t want to have any
If you're using PHP you can use the following :
preg_replace("/[\<]p[\>][\s]+ [\<][\/]p[\>]/" , " " , $pre_comment);
This will remove : " "
" "
Enjoy :)
Maxwell