- Yes, simply use the following JS code:
window.onload = function () {
setTimeout("SomApi.startTest()", 600);
}
- Or if you are using jQuery:
$.ready(function(){
setTimeout("SomApi.startTest()", 600);
});
window.onload = function () {
setTimeout("SomApi.startTest()", 600);
}
$.ready(function(){
setTimeout("SomApi.startTest()", 600);
});
0 Comments