Skip to content

Instantly share code, notes, and snippets.

@karlazz
Created November 9, 2015 19:26
Show Gist options
  • Select an option

  • Save karlazz/58f56caf774a8a5a51ed to your computer and use it in GitHub Desktop.

Select an option

Save karlazz/58f56caf774a8a5a51ed to your computer and use it in GitHub Desktop.
add_action("gform_pre_render_13", "add_form13_js", 10);
function add_form13_js($form) {
$location = site_url("/thanks-for-your-donation");
echo '
<script type="text/javascript">
jQuery(document).bind("gform_post_render", function(){
jQuery(document).on("click", "#gform_submit_button_13", function(e) {
if (document.getElementById("choice_13_18_1").checked) {
//jQuery("#give-modal").hide();
}
});
});
</script>';
return $form;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment