I'm having problem with counting some special characters on textarea
every time I press alt+164 for example , it does not count the character unless I press another key.
heres my code:
HTML
<textarea style="resize:none;" rows="15" name="tarea" cols="45"
onkeyup="count_chars(this);"
onkeydown="count_chars(this);"
onkeypress="count_chars(this);"></textarea>
Javascript:
function count_chars(tarea)
{
x = document.myform.tarea.value;
document.myform.charcount.value = x.length;
}