/ Published in: jQuery
                    
                                        
Handy code snippet for keeping track of the number of characters a user is entering into a textbox or textarea. It will dynamically update the count as the user is typing. This also works with copy & paste.
The top snippet will automatically calculate the current count after the page loads; use the .keyup event to do the dynamic update.
All of this code should be in the $(document).ready.
                The top snippet will automatically calculate the current count after the page loads; use the .keyup event to do the dynamic update.
All of this code should be in the $(document).ready.
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
var maxchar = 1500;
var count = $('#txtDescription').val().length;
var char = maxchar - count;
$('#charleft').text(char + " characters left");
$('#txtDescription').keyup(function () {
var len = $(this).val().length;
if (len >= maxchar) {
$('#charleft').text("You have reached the character limit!");
} else {
var chardiff = maxchar - len;
$('#charleft').text(chardiff + " characters left");
}
});
Comments
 Subscribe to comments
                    Subscribe to comments
                
                