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: value
is added and changed via JS
Unsuccessful with the snippet below :
$("#estado-cliente").bind("change paste keyup", function() {});