I have this code in my view..
<span class="bold">Comment:
<%=Html.TextAreaFor(model => model.Comment, new { })%>
</span>
The comment field is populating from a database. The text from the database is too long to fit in the visible area of the textarea. I have been asked to create a link next to the text area that, when clicked, would display the entire contents of the textarea in a 'popup bubble'.
Is this possible using jQuery?