I have page that has a contenteditable area that has a CKEDitor attached.
what I'm looking to do, is to load another page to replace the current one, that loads in another contenteditable div via AJAX
This works fine, but the loaded content, doesn't have the CKEditor WYSIWYG attached.
<div contenteditable="true" class="content"></div>
$.ajax({
type: "POST",
url: 'load.php',
data: "id="+id,
success: function(data)
{
// I've tried using the CKEditor config, but doesn't load
}
});
load.php
<div contenteditable="true" class="content"></div>