Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save vvaz/bf4a65a1f3167df73feb to your computer and use it in GitHub Desktop.

Select an option

Save vvaz/bf4a65a1f3167df73feb to your computer and use it in GitHub Desktop.
<script>
(function($){
$(document).ready(function(){
$( 'form.widget_wysija' ).submit(function(e){
e.preventDefault();
setTimeout(function() {
var msg = $( '.wysija-msg' );
if( msg.text() !== '' ){
window.location.replace( 'http://your_thank_you_page_url' );
}
}, 3000);
});
});
})(window.jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment