JQuery

jQuery input textbox change event

jQuery input textbox change event, someone asked me to explain?

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
       }

Post your comments / questions