| Whenever I try to update the value of an input field from within a wysiwyg the undo batch resets. Take the code I have pasted below and type a couple of lines, hit return, and type a couple more lines. Try to undo and redo. No problem.. Now try to click into the wysiwyg before undoing. Big Problem! Thanks in advance for any help.. <IFRAME WIDTH=200 HEIGHT=200 ID=myEditor></IFRAME> <SCRIPT> frames.myEditor.document.designMode = "On" frames.myEditor.document.onmouseup=hello function hello(){ document.getElementById("border2").setAttribute("value", "Please Work"); } </SCRIPT> <form> <input id='border2' value='' size='25'> </form>
|