wipeout
09-23-2002, 04:09 PM
Searched desperately for a script that redirects visitor to a page depending on time of day. The closest I could find was this one for swapping images. Is there a way to modify fo create the desired effect?
var current= new Date()
var day_night=current.getHours()
if (day_night<=12)
document.write("<img src='day.gif'>")
else
document.write("<img src='night.gif'>")
:confused:
var current= new Date()
var day_night=current.getHours()
if (day_night<=12)
document.write("<img src='day.gif'>")
else
document.write("<img src='night.gif'>")
:confused: