I have this function in my js file. I need to give time for doTimerA. I want to start doTimerA after 100ms. Right now in this function both is chosen same time.
function ReLoadBuy(){
if (myclick == "2")
{
ReLoadBuygo();
}
else
{
StartBuy();
doTimerA();
}
}
Anything i must add?
Thanks
Try this:
Insead of this: