You will want to search through the jQuery javascript file for the number 13. It should appear only twice. Once is to init the timer that runs every 13ms and the other is to reinit it if for some reason the timer stops. Changing this to 83ms seems to make things run a bit more smoothly.
There isn't any documentation on this that I am aware of. I came across it by searching the jQuery library for instances of setInterval(). I believe this value is used for all jQuery things that require a timer; animations, ajax calls, etc. It reduces the number of times jQuery will attempt to update CSS of an element when animating. - John Kramlich On Apr 16, 1:12 am, Jonathan <[EMAIL PROTECTED]> wrote: > Sure, give me some examples of this being done in jQuery and I'll get > a better understanding of it. I was just reading through docs looking > for information on intervals or animation intervals and there really > wasn't much. Thanks for the feedback! > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhoneWebDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/iphonewebdev?hl=en -~----------~----~----~----~------~----~------~--~---
