18.01.2021, 08:45
Redirect to plan #2 after 5000 ms timeout:
Code:
$(function() {
var timeout = setTimeout(function() {
showPlan(2);
}, 5000);
$('body').on('showplan', function() {
clearTimeout(timeout);
});
});