0
HTML:
<!-- Campo preenchido com retorno AJAX -->
<input type="text" name="estado-cliente" hidden id="estado-cliente" readonly="readonly"/>
How do I stop detecting any change in value
?
Note: the value
is added and changed via JS
Unsuccessful with the excerpt below:
$("#estado-cliente").bind("change paste keyup", function() {});
Hello @n3uRoQuiLa, the first option did not understand how to check and auto-execute the function based on the value change, the second failed. My doubt can be better illustrated if you understand something like: "detect the change of value by the console..."
– lucasbento
I made some adjustments, now that I saw that the input is Hidden. Try this way...
– ℛɑƒæĿᴿᴹᴿ
Would you like to continue this discussion via chat? http://chat.stackexchange.com/rooms/54841/como-detectar-alteracao-no-value-do-input-com-readonly-ativo
– lucasbento