I am trying to make a function which will execute when the value of a text input field
is changed. The value of the field changes when a table cell is clicked, not on keyup
, nor paste. I tried it like this:
$("#kat").change(function(){
alert("Hello");
});
And I have the text field:
<input type="text" id="kat" value="0"/>
but it isn't working. Any help?