djblaze·15 ปีที่แล้ว·discussI 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.
djblaze·15 ปีที่แล้ว·discussIm 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 want to say 10...but I've used '0' a lot without fail.