Im using tinymce and saving it to a database.
When I edit the saved content using tinymce and save again, it inserts a p tag at the beginning.
Editing the co
For me it worked by making "force_br_newlines : true" instead of false.
tinyMCE.init({ mode : "textareas", theme : "advanced", force_br_newlines : true, force_p_newlines : false, forced_root_block : '' });
I hope it helps