When I submit a form using jQuery\'s serialize() method, everything gets submitted except the textarea in the form. Is this a common issue? I can\'t figure it out. The form
It leaves out the textarea , unless you Remove 'form="new_note_form"' from your textarea element.
I know it's against good practices, but, if you want to use jQuery's serialize function, you gotta remove this attribute from textarea element.