A me servirebbe uno script, tipo quello sotto, che però rediriga l'utente oltre che in base all'ora anche a seconda del giorno della settimana...nessuno mi può aiutare ?
![]()
<script>
today=new Date();
ora=today.getHours()
if (ora > 15) {
location.href="1x.htm"/*tpa=http://www.xxxxxx/1x.htm*/;
}
if (ora < 14) {
location.href="1x.htm"/*tpa=http://www.xxxxxx/1x.htm*/;
}
</script>