I'm using Jquery plugin called Limit as below
$(document).ready(
function () {
$('[id$=Textarea1]').limit('150', '#charsLeft');
});
Relevant ASPX section,
<td align="left" valign="top">
<textarea id="Textarea1" class ="limit" runat="server" rows="4" cols="30" style="resize: none;
background-color: #F9E8EC; font-family: 'Times New Roman', Times, serif;" ></textarea>
<br />
You have <span id="charsLeft">160</span> chars left.
</td>
both above controls are inside update panel. fist time I can see this limit function works fine. but when update panel updated span shows 160 characters and not updating when typing on text area. How to fix this issue?