I browsed the source briefly, and while they could get this to work on IE9, there is so much css/dom manipulation (which even ie9 is not great at) that it might slow down the browser enough to be seen as annoying.
Im assuming we are talking client-side and 'next tick' means when there is a millisecond of free time. Just use: setTimeout(function, 0) Technically supplying '0' as the milliseconds is bad in old browsers, so you might…
I browsed the source briefly, and while they could get this to work on IE9, there is so much css/dom manipulation (which even ie9 is not great at) that it might slow down the browser enough to be seen as annoying.
Im assuming we are talking client-side and 'next tick' means when there is a millisecond of free time. Just use: setTimeout(function, 0) Technically supplying '0' as the milliseconds is bad in old browsers, so you might…