Advertisement
srikat

Untitled

Sep 12th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(function($) {
  2.  
  3.     function toggleFocusedClass( event ) {
  4.         $(event.target).parents( '.gfield' ).toggleClass( 'focused' );
  5.     }
  6.  
  7.     $( document ).on( 'focus.sridhar, blur.sridhar', '.gform_wrapper :input', toggleFocusedClass );
  8.  
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement