Redirect after CountDown finished
-
Hello,
I wonder if it is possible to redirect to a specific page after the countdown has finished? This feature is great if you run the webpage in kiosk-mode.
As the countDown-Plugin (http://keith-wood.name/countdown.html) supports this feature, it would be great if this setting would made it to the plugin.
The required code in script.js could be something like:
$(‘.countdown’).countdown({
onExpiry: redirectOnEnd,
…
});function redirectOnEnd(){
// read “url” from this from settings …
window.location.href=url;
}
The topic ‘Redirect after CountDown finished’ is closed to new replies.