On April 7th, Google launched a new version of Gmail for mobile for iPhone and Android-powered devices. We shared the behind-the-scenes story through this blog and decided to share more of what we've learned in a brief series of follow-up blog posts. This week, I'll talk about two kinds of timers Javascript provides and how you can put them to good use in your own web applications. Javascript Timer API Timers provide a way to schedule a function to run at some later point in time. The two functions used to create timers are: var id = setTimeout(fn, delay) creates a timer which calls the…

