ok adam i see,
but i use the editor in a window and save by:
function CuteEditor_OnCommand(editor,command,ui,value) { //handle the command by yourself if(command.toLowerCase()=="postback"&&value=="Save") { tellDad(); //return true;//return true if you want to stop the command } }
function tellDad() { var editor1 = document.getElementById(''); // Get the editor HTML v_parentform.elements[v_field].value = editor1.getHTML(); window.close(); }
maybe it is because in my code there is no postback (like in your example) that not the entire url is posted into my textbox on the parent site.... ???