I've been search for about 3 hours and still can't find any solutions, so i hope you guys can help me.
I want to the stored data back from the database in the ckeditor (textarea) and let the user edit that data and store it again. The big problem is that i can't get that data back in my editor in the right way.
I let users submit data with ckeditor to a database. It is stored there like <p>Test <strong>Test</strong></p>. With an AJAX post i get the data back from the database, but i can't get the data properly back in thee ckeditor. When i try to use setData it puts it all in an <p> element, so the user sees <p>Test <strong>Test</strong></p>, instead of "Test Test". Also tried insertHtml, but that not seems to work, i'm getting an error on that function. Can anybody please help me, really stuck on this one :(

Fixed it.
Fixed it.
Deleted the textarea from the HTML code and with jQuery append it with the value from the database in it.
After that just, CKEDITOR.replace('yourTextareaId'); and it wil take the value / text from the textarea that is just appended to the html