if you need to call another function when text input change event in jquery.
Using the Id we can do it by jquery.
$("#txtName").change(function () {
alert("Hello");
});
Or
$("#txtName").change(function () {
Myfunction();
}); function myfunction() {
//do something
}