Skip to content

Instantly share code, notes, and snippets.

@fabrizim
Created October 14, 2015 23:37
Show Gist options
  • Save fabrizim/6136b7f981ad4c8b97dc to your computer and use it in GitHub Desktop.
Save fabrizim/6136b7f981ad4c8b97dc to your computer and use it in GitHub Desktop.
Gravity Forms: Prevent duplicate form submission on back button
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