I was fiddling with a JavaScript timer application and noticed a bug in IE6. I’m sure this is documented elsewhere but I couldn’t find anything with some quick searches; hence this post.
Date.now()
is not supported by IE6. Use new Date().getTime()
instead.