Created
October 14, 2015 23:37
-
-
Save fabrizim/6136b7f981ad4c8b97dc to your computer and use it in GitHub Desktop.
Gravity Forms: Prevent duplicate form submission on back button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(function($){ | |
$(document).on('gform_post_render', function(e, form_id){ | |
$('#gform_ajax_frame_'+form_id).attr('src', 'about:blank'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment