You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function editHMTL(id) {
|
|
CKEDITOR.replace( id );
|
|
|
|
timer = setInterval(updateDiv,1);
|
|
function updateDiv(){
|
|
var editorText = CKEDITOR.instances[id].getData();
|
|
$('#'+id).html(editorText);
|
|
}
|
|
}
|
|
|