Hi,
I can able to edit for the first time and can save it to the database. When i retireved the data for edit.
The contenteditable event has changed to false in Chrome/ IE/ Safari. Here is the code
function getdd(){
$(document).ready(function() {
CKEDITOR.disableAutoInline = true;
$("[contenteditable='true']" ).each(function( index ) {
var content_id = $(this).attr('id');
//$('#'+content_id).show();
CKEDITOR.inline( content_id, {
on: {
blur: function( event ) {
var data = event.editor.getData();
data1 = $('#contenter').html();
//alert(data1);
$('#content').html(data1);
}
}
} );
});
});
}
Screen shot, PFA