I have a need to submit a form (containing the FCKEditor) using a technique other than a "submit" button. When I attempt to call the submit method of the form I get FCKEditor javascript errors.
Has anyone ever submitted the form containing the IFRAME code using a technique other than a traditional HTML submit button?
It seems as though the FCKEditor is looking for a specific event to overwrite the content of the hidden variable on the main form. The timing of programatically invoking the form submit seems to create the problem.
Has anyone ever submitted the form containing the IFRAME code using a technique other than a traditional HTML submit button?
It seems as though the FCKEditor is looking for a specific event to overwrite the content of the hidden variable on the main form. The timing of programatically invoking the form submit seems to create the problem.

RE: Submitting a form using JavaScript
<script language="JavaScript">
<!--
function SubmitForm(str){
var e = document.all ? document.all[str] : document.getElementById(str);
e.submit();
};
//-->
</script>
<a href="#" onClick="SubmitForm('formData')">Submit</a>