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


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

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