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 chan
Have you tried using of CLEditor '.doc' property?
doc - The document object currently being edited in the iframe. cleditor documentation
var inputDoc = $("#input").cleditor().doc; $(inputDoc).keyup(function(){ var v = $('#input').val(); $('#x').html(v); })