Jquery Blur Event

The blur event is sent to an element when it loses focus.
$(document).ready(function () {
    $("#txtInput1").blur(function (event) {
       $("#txtInput1").css("background-color", "Green");
    });
});
The blur event is sent to an element when it loses focus.
Blur : <input id="txtInput1" type="text" />
Demo / Download
Jquery Blur Event Jquery Blur Event Reviewed by Bhaumik Patel on 8:57 PM Rating: 5