Skip to content

Instantly share code, notes, and snippets.

@ckchaudhary
Last active July 27, 2024 07:48
Show Gist options
  • Save ckchaudhary/8628227 to your computer and use it in GitHub Desktop.
Save ckchaudhary/8628227 to your computer and use it in GitHub Desktop.
<script>
jQuery(document).ready(function($){
$(".wpcf7").on( 'mailsent.wpcf7', function(){
var redirect_to = $(this).find('#wdw_redirect_to_url').val();
if( typeof(redirect_to)!=='undefined' && redirect_to!='' ){
window.location.href= redirect_to;
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment