I have this and it works for me, I skip the alert
$("#TextField").change(function(){
alert("El campo ha cambiado");
});
But now I try to make the alert jump depending on the value if it changes or not
I've tried this and nothing
var item = document.getElementById("Picker").value
item.change(function(){
alert("El campo ha cambiado");
});
Also this other and nothing
$("[id*=Picker]").val.change(function(){
alert("El campo ha cambiado");
});
The field is this
<INPUT name="Picker" id="Picker" type="hidden" value="AQUI">