I need to add delay about 100 milisecond to my javascipt but i don't want to use settimeout function of window and either don't want to use busy loop. does anyone has any suggestion?
|
|
|||||
|
|
|
Unfortunately, It's not that hard to use actually, instead of writing this:
you use
I understand that using
Unfortunately, those are workarounds and are likely to cause other problems (such as freezing browsers). It is recommended to simply stick with the recommended way, which is |
||||
|
|
|
This thread has a good discussion and a useful solution:
Unfortunately it appears that this doesn't work in some versions of IE, but the thread has many other worthy proposals if that proves to be a problem for you. |
||
|
|
|
In jquery,U can chanin methods,So it will be executed one after another.you can have a hidden div in your page,Use the hide/show method of the div in the chaining.You can set the speed a 10 seconds there.so that you will get a delay there Ex :
}); in the above code, First function called alert will come then after that,"mySEcondFunction" will be executed |
||||
|
|
|
Actually only |
|||
|
|
