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.
refresh tag after email confirmation possible?
refresh tag after email confirmation possible?
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
-
- Posts: 47
- Joined: Sat 21. Feb 2004, 14:24
- Location: Belgium
Past the following code in a html-content part in the email_succes page:
B.
Code: Select all
<script language="javascript">
function gohome() {
document.location.href="index.php";
}
setTimeout("gohome()",5000);
</script>
Last edited by bertalizer on Fri 7. May 2004, 14:21, edited 1 time in total.
cool great thank you bertalizer 

Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3