03.02.2021, 16:49
(18.01.2021, 08:45)admin Wrote: Redirect to plan #2 after 5000 ms timeout:
Code:$(function() {
var timeout = setTimeout(function() {
showPlan(2);
}, 5000);
$('body').on('showplan', function() {
clearTimeout(timeout);
});
});
Thanks Admin, with this I can create an intro to visualization.
By the way, to go back to that Plan 2, what do I need to change in the script that Erwin shares?