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
No it doesn't.
It works fine. http://jsfiddle.net/nuBkM/
lorem ipsum
The JavaScript
console.log($("form").serialize()); // => foo=bar&something=lorem+ipsum
.serializeArray works too
.serializeArray
console.log($("form").serializeArray()); // => [{name: "foo", value: "bar"}, {name: "something", value: "lorem ipsum"}]