jQuery(document).on('gform_pre_submission', function (event, formId) { var $form = jQuery('#gform_' + formId); var $button = $form.find('input[type="submit"], button[type="submit"]');$button.prop('disabled', true); $button.addClass('is-submitting');if ($button.is('input')) { $button.val('Submitting...'); } else { $button.text('Submitting...'); } });If you are using the jQuery library, then don't forget to wrap your code inside jQuery.ready() as follows:jQuery(document).ready(function( $ ){ // Your code in here });--If you want to link a JavaScript file that resides on another server (similar to ), then please use the "Add HTML Code" page, as this is a HTML code that links a JavaScript file.End of comment */

Nothing found