Hi,
I want to apply ckeditor on a dynamically created html element (with jquery). When I click on my link a div will be added to my html page but it isn't editable with ckeditor
$('#myLink').bind('click',function(){
var newDiv = $('<div id="div2" contenteditable="true">').text("Hello");
$('#content').append(newDiv);
});
Any idea how I can fix this ?
Thanks