Last active
February 16, 2018 21:54
-
-
Save RafaelFunchal/519297c8a79cb5cd88d8 to your computer and use it in GitHub Desktop.
Redirects to a custom link after submits the subscription form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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
@camasa, check if each form has a different class or id, then edit the element mentioned on line 4