I'm using Cleditor http://premiumsoftware.net/cleditor/docs/GettingStarted.html. I want to get the value on keyup and insert the text into another div. cleditor comes with change() event that i'm currently using in the jsfiddle example below, but thats not the same as keyup. I want the div to be updated as i'm typing in. I tried keyup but it doesn't work.
Here's what i have now
$("#input").cleditor().change(function(){
var v = $('#input').val();
$('#x').html(v);
})
Check jsfiddle http://jsfiddle.net/qm4G6/11/