Hello programmers this is my question today, what function in jquery do i need so when a counter reach the number 100 that page is redirected to the main menu?
Asked
Active
Viewed 53 times
-1
-
1You don't *need* any jQuery function at all. – HaukurHaf Oct 05 '18 at 23:15
1 Answers
1
Check the counter's value with an if statement and if the value is 100, then simply:
window.location.href = 'http://example.com';
There is no need for JQuery in this.

Patrik Alexits
- 987
- 9
- 24