JQuery Change Event

JQuery Change Event

by Shuaib Khan

HTML

Type Some text in text box and click out of text box </br>
<input id="txtInput" type="text" />

JavaScript

$(document).ready(function () {

        $("#txtInput").change(
             function () {
             		
                 alert("Textbox value is changed");
                 
             }
         );
    });