Skip to content

Instantly share code, notes, and snippets.

@kpry
Created February 3, 2016 02:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kpry/8dd86e91a338f1365b4f to your computer and use it in GitHub Desktop.
Save kpry/8dd86e91a338f1365b4f to your computer and use it in GitHub Desktop.
Hide gravity forms submit button on click
jQuery(document).ready(function() {
jQuery('#gform_59 input[type=submit]', this).click(function() {
jQuery('#gform_59 input[type=submit]').css('display','none');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment