6 lines
158 B
JavaScript
6 lines
158 B
JavaScript
|
jQuery( function( $ ) {
|
||
|
$( '.lost_reset_password' ).on( 'submit', function () {
|
||
|
$( 'input[type="submit"]', this ).attr( 'disabled', 'disabled' );
|
||
|
});
|
||
|
});
|