The problem is that tinyMCE has not added the content to the textarea which it usually does on the page unload event.
To solve this, call this function before you serialize: tinyMCE.triggerSave(true,true); - Adhip. On Feb 25, 8:10 pm, Dan Vega <danv...@gmail.com> wrote: > I am having an issue withtinymceand jquery ajax form submissions. I > have 2 fields (title/content) and a hidden input (id) that I am > submitting via ajax. > > when I use serialize > > var form = $("form").serialize(); > > title = My title > id = 2124245 > content = null > > It seems to be an issue withtinymcebut I if I post using normal form > it works. I imagine some kind of scopes are butting heads but I have > no idea. If I take offtinymceand just use the textarea, it works > great. > > Anyone got any ideas?