I’m using (form).serialize to POST a form with ajax…
Something like:
$.post("/ajax/post_message_action.php", $(form).serialize(), function (data) { ... }
The problem is that I want to use a contentEditable DIV instead of a
<textarea name="description">
Is this possible?
Thanks!
1 Answer