Hello,
like for other input-fields I use a ajax-xmlHttprequest. It seems it is not working for the ckeditor. It is obvious because the form-element (textarea) is being replaced by the ckeditor-instance. So I want to send data to an element who is no longer there...
Can I use my code or is there another way?
function showInfo(str)
{
$.ajax({
type: "POST",
url: "./responsexml.php",
data: { form : str, sid : Math.random() }
}).done(function( msg ){
xmlDoc = msg;
var textarea = document.getElementById("editor1").innerHTML = xmlDoc;
})
}