I'm not even sure if this is possible, I am using the excellent Pagedown editor (used on this site). Usually my text is in an textarea...

<textarea name="Description">

</textarea>

And my controller class picks this up without a problem. But because I'm using PageDown I have to use a div...

<div class="wmd-preview" id="wmd-preview" name="Description">

</div>

How do I get my controller to map the InnerText of this Html block to my description? And I wants to keep the markup too obviously :-)

link|improve this question

71% accept rate
You would like to post the content of this div on the form submit, right? – tugberk Dec 8 '11 at 21:41
feedback

1 Answer

If I understand your question, and you're using jQuery could you do this?

$('textarea[name="Description"]').html($('#wmd-preview').html());
link|improve this answer
When do I do it though? Can I raise an event that will bind the html to that textarea before the page submits? Its messy but if there isnt another solution I can. Just not sure how to make sure the script fires before http POST!? – Exitos Dec 8 '11 at 21:08
How are you doing your POST? Can you modify your page/form to use jQuery.ajax(options)? One of the properties of the options argument is named data where you could add the parameter name your controller is expecting and give it the value I described above. – David Dec 8 '11 at 21:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.