Im using WMD: The Wysiwym Markdown Editor (I think stackoverflow does as well, and btw, I recommend you to visit that page). I have a single view that is supposed to have two separate editors and two corresponding previews. Is that possible? And if, how?
Currently only one of the preview fields are updated correctly, the second one seems dead.
Code for the form:
<label for="Description">Description</label> <br />
<%= Html.TextArea("Description", new { style = "width: 400px; height: 200px;" })%><br />
<label for="Content">Content</label> <br />
<%= Html.TextArea("CourseContent", new { style = "width: 400px; height: 200px;" })%><br />
And the code regarding the preview fields:
<div style="width: 50%; float: left;">
<h2>Preview 1</h2>
<div class="wmd-preview"></div>
</div>
<br />
<div style="width: 50%; float: left;">
<h2>Preview2</h2>
<div class="wmd-preview2"></div>
</div>
