URL forwarding

Stefan83

New Member
Hi
Is it possible to automatically redirect a web page by inserting code within the body tags of a web page. I use a CMS and I dont have acces to the source files
Thanks
 

smashwebs

New Member
<script type="text/javascript"><!--
setTimeout('Redirect()',4000);
function Redirect()
{
location.href = 'whateverpage.htm';
}
// --></script>
 
Top