#9663 closed bug (invalid)
Is there a limit of 15 .animate() calls/page?
Reported by: | anonymous | Owned by: | anonymous |
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | unfiled | Version: | 1.4.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I'm having this weird issue where my animate() calls stop doing their job after call no 15.
http://www.pastie.org/2115781
Those are pins that are supposed to disperse on a map automatically after the webpage has loaded. It's the same image, used 17 times. Any ideas?
PS to devs: {{{ code block thing ain't working here.
Change History (5)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
http://jsfiddle.net/Sqkz2/ gotta love not being able to edit a comment.
comment:3 Changed 12 years ago by
Owner: | set to anonymous |
---|---|
Status: | new → pending |
The test case isn't working for me, the domain http://getyourswagon.servehttp.com isn't responding. Have you used Firebug, Chrome developer tools, or IE debugger to see if all the content is coming in? Is it happening in all browsers consistently?
comment:4 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
setTimeout("500");
is not a remotely valid usage of setTimeout. As you can see, the code formatting works fine.
Furthermore, the reason your code is failing on the 16th animation's "left" property is because you wrote "335x" instead of "335px"
Furtherer-more, you simply need to be logged in to Trac in order to edit comments.
comment:5 Changed 12 years ago by
Right, now I feel retarded. Before I felt stupid. Thanks for your patience. I didn't realize I did not login and have been banging my head against my desk for 5 hours with that tiny oversight - missing p.
Here you go, fiddle with it yourselves. I just found out that it's only pin 16 that disobeys in the jsFiddle environment.