Forum Moderators: open
$('input[type="text"], textarea, select').focus(function() {
$(this).addClass('input-active');
});
$('input[type="text"], textarea, select').blur(function() {
$(this).removeClass('input-active');
});
.input-active {
background-color: #FFFFCC;
border: 5px solid #000;
}