Hello guys
I have a survey that start each morning at 8 am and finish at 6 pm for each day.
Is it possible to automate closing and reopening the survey?
Thanks
Page 1 / 1
It should be possible to add a javaScript redirect based on the hour.
Include it in the header
var hours = new Date().getHours();
if(hours >= 6 && hours <= 8){
window.location.href = "some_url";
}else{
window.location.href = "some_other_url";
}
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.