I have a textarea which is a tinymce editor. This text area contains html. I think i need to do something like this in jquery…
var str = $("#emailMessage").serialize();
$("#emailMessage").text(str);
How can I convert this back to markup at my mvc controller?
Thanks.
If you are using the jquery tinymce plugin you don’t have to do anything but submitting the form. It transforms the
$("textarea").val()into the value of the tinymce editor