HTML Input on change of value
Posted
by arik-so
on Stack Overflow
See other posts from Stack Overflow
or by arik-so
Published on 2010-05-13T11:06:27Z
Indexed on
2010/05/13
11:14 UTC
Read the original article
Hit count: 206
Hello,
I have an input tag. This tag does not have the autocomplete feature turned off, thus, one does not necessarily need to release a key to change the value of this field and focus anotehr one. My question is: how can I detect ANY value changes of this particular field, like e. g.
<input onvaluechange="//do following..." />
The JavaScritp attribute onchange
does not fire on change of value, only on changes like blur, focus, etc...
Thanks in advance!
© Stack Overflow or respective owner