I have a text area field where i need to provide information about the word count when the user enters some text in the field. Length of the field is supposed to be 500 Ch
Simplest way to count:
var count = $("#your_textarea").val().length;