[Solved] How do I set a time out using JavaScript? [duplicate]

[ad_1]

You can use the setTimeout function that is built into JavaScript for this. It will not prevent the user from interacting with your page:

setTimeout(function()
{
    yourFunctionHere();
},
13000);

14

[ad_2]

solved How do I set a time out using JavaScript? [duplicate]