Forums

Full Version: Script to execute a function after the timer expires
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
function mytime() {
    setTimeout(
        function() {
            sdk.reload('C_NT');
        }, 30000);
}
onclick = mytime();

Here this connection will load after 30 sec once the function is called.