Is it possible to detect when the user unfocuses an input box using jquery? I.e when they click off of it an event fires.
I believe the blur function is what you are looking for.
blur
$( "input[type=text]" ).blur( function() { // unfocus event });