I have a situation where my asp textbox and label are appearing as a text area:
<div class="control">
<asp:TextBox runat="server" Rows="2" ID="TextBox1" Width="80%" EnableViewState="false" ViewStateMode="Disabled" CssClass="textboxBootstrapCss" TextMode="MultiLine" />
<asp:Label runat="server" ID="Label1" Visible="false" ViewStateMode="Disabled" EnableViewState="false" AssociatedControlID="TextBox1" />
</div>
However, I would like to use jQuery to enable the addition of resize:both;
, allowing users to resize the text area in the bottom right corner, as this feature does not work in IE when using CSS.
Below is the jQuery code I am using:
$(function () {
$("textArea").resizable();
});