I implemented a timer in javascript, but what if javascript is disabled?
I have used a timer in my webpage implemented in JavaScript. but what if JavaS开发者_运维知识库cript is disabled? Will it remove the time constraint from the webpage? If that may be the case what should I do?
It depends on what you are trying to do, but you can use a meta refresh tag to redirect the user to another page (or the same page) after a given time interval.
This will potentially be horribly disruptive to the user experience.
精彩评论