blur(callback)
Adds a callback that is triggered when an element loses focus.
$("input").blur(function() {
console.log("Input element blurred");
});
Last updated on January 9, 2023
Adds a callback that is triggered when an element loses focus.
$("input").blur(function() {
console.log("Input element blurred");
});