Home › Forums › Other › HTML Re Direct code › Reply To: HTML Re Direct code
July 9, 2017 at 11:59 pm
#256680
Participant
Hi Johnmorris, normally in a case like this you could solve it by using the onsubmit
event of the form. Like this:
<form id="ic_signupform" onsubmit="redirectFunction()">
</form>
function redirectFunction() {
window.location = '/home';
}
But I see your form is submitted to icontact.com
. Maybe you have an account there where you configured this form? Then login and use the configuration, because I see the user is being redirected to /articles/how-to-train-your-dog-quickly-and-effectively/
. There must be a setting where that redirect is placed.