Skip to content

Instantly share code, notes, and snippets.

@ckchaudhary
Created January 26, 2014 04:01
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