Handle input blur event
Description
The following code shows how to handle input blur event.
Example
<html>
<head>
<script type='text/javascript'
src='http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>
<script type='text/javascript'>
$(document).ready(function() {<!-- w w w . j a v a2 s .c o m-->
$('input').focus(function() {
$(this).addClass('tmpFocused');
});
$('input').blur(function() {
$(this).removeClass('tmpFocused');
});
$('input').trigger('focus');
});
</script>
<style type='text/css'>
input.tmpFocused {
background: #5092c5;
color: white;
}
</style>
</head>
<body>
<form method='post' action='javascript:void(0);'>
<div>
<input type='text' name='tmpExample' value='Example' size='25' />
</div>
</form>
</body>
</html>