Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other HTML Re Direct code Reply To: HTML Re Direct code

#256680
JeroenR
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.