12-21-2022, 03:32 PM
function mytime() {
setTimeout(
function() {
sdk.reload('C_NT');
}, 30000);
}
onclick = mytime();
Here this connection will load after 30 sec once the function is called.
setTimeout(
function() {
sdk.reload('C_NT');
}, 30000);
}
onclick = mytime();
Here this connection will load after 30 sec once the function is called.