Jquery JavaScript DHTML


  
    
    
$(document).ready(
  function() {
    $('input').focus(
      function() {
        $(this).addClass('tmpFocused');
      }
    );
    $('input').blur(
      function() {
        $(this).removeClass('tmpFocused');
      }
    );
  
   $('input').trigger('focus');
  }
);
    
    
input.tmpFocused {
    background: #5092c5;
    color: white;
}