Monday, April 27, 2015

asp.net textbox limit characters

   var MaxLength = 7;
            $('#<%=txtZip.ClientID%>').keypress(function (e) {
                alert('textbox -' + $(this).val().length);
                if ($(this).val().length > MaxLength) {
                    alert('true');
                    e.preventDefault();
                }
            });

No comments:

Post a Comment