AJAX Form Autosubmit TinyMCE fix


/ Published in: JavaScript
Save to your folder(s)

Since tinyMCe doesn't transfer it's editor contents to the text area until you hit the submit button, and since the autosubmitter doesn't ever hit the submit button TinyMCE boxes never save. IT's a simple fix, just place the code on line 2, at the very top of the as function, and it will tell TinyMCE to save. This line should not be there if you don't have TinyMCE integrated in your site as it'll just cause javascript error.

This fix is in reference to this Snipplr: <a href="http://snipplr.com/view/44799/ajax-form-autosubmit/">http://snipplr.com/view/44799/ajax-form-autosubmit/</a>


Copy this code and paste it in your HTML
  1. tinyMCE.triggerSave();

URL: http://fatfolderdesign.com/60/code/javascript-auto-submit-tinymce-fix

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.