| 1 |
/* |
| 2 |
* Function that adds placeholders to Login Forms and Widget fields |
| 3 |
* |
| 4 |
* @since v.2.1 |
| 5 |
* |
| 6 |
*/ |
| 7 |
jQuery( document ).ready( function() { |
| 8 |
jQuery(".login-username input, .login-password input").each( function ( index, elem ) { |
| 9 |
var element_id = jQuery( elem ).attr( 'id' ); |
| 10 |
if( element_id && ( label = jQuery( elem ).parents( '#wppb-login-wrap' ).find( 'label[for=' + element_id + ']' ) ).length === 1 ) { |
| 11 |
jQuery( elem ).attr( 'placeholder', jQuery( label ).text() ); |
| 12 |
} |
| 13 |
}); |
| 14 |
}); |