Page 1 of 1

refresh tag after email confirmation possible?

Posted: Fri 7. May 2004, 13:32
by cyrano
Hi there, is it possible to set a refresh tag in wcms?

I would like to set a refresh tag after a user send a form and was linked to the email_succes page. so after 5 sec i would like to bring the user back to e.g. the index.php page.

possible?

thank you for advice.

Posted: Fri 7. May 2004, 14:20
by bertalizer
Past the following code in a html-content part in the email_succes page:

Code: Select all

<script language="javascript">
function gohome() {
	document.location.href="index.php";
}
setTimeout("gohome()",5000);
</script>
B.

Posted: Fri 7. May 2004, 14:21
by cyrano
cool great thank you bertalizer :D