Posting New html from TINYMCE
Posted
by matthewb
on Stack Overflow
See other posts from Stack Overflow
or by matthewb
Published on 2010-05-28T16:14:10Z
Indexed on
2010/06/01
15:43 UTC
Read the original article
Hit count: 187
JavaScript
|tinymce
Seems like a simple problem, I have a form and when someone needs to edit data, the textarea that is controlled by TINYMCE loads the values, but when I change it and submit the form, the new changes are not being posted.
What am I doing wrong?
UPDATE How do I do it via this, or do it say on click in the editor. I am using jquery validate, this is the submit handler.
$(form).ajaxSubmit({
target:'#result',
success:function(){
$('html, body').animate({scrollTop:'90px'}, 500);},
clearForm: false});
}});
© Stack Overflow or respective owner