Help!! This problem is very easy to reproduce (at least on my end). Even using the SIMPLE.asp example
that comes with the download.
Everything works fine in IE, but in Firefox the editor does not post the
changes upon posting when using a javascript submit. If I use the standard 'submit' button
on a form, the editor works fine. If I use javascript to post the form, the changes are not submitted. I've
tried adding save() methods with no luck as well.
To reproduce it:
Open the SIMPLE.asp file that came with CuteEditor:
Change the existing submit:
<input type="submit" value="Submit" ID="Submit1" NAME="Submit1">
To:
<input type=button name=Submit1 value='Submit'
onfocus="save(Editor1);" onclick="document.theForm.submit();"
id=Submit1>-->
In FireFox, when you load and save the changes they will not save. Interestingly, if you back up and save again it captures the changes.