Side navigation
#10268 closed bug (invalid)
Opened September 13, 2011 08:36PM UTC
Closed October 04, 2011 08:13AM UTC
Append, prepend and animate
Reported by: | alper.buluc@gmail.com | Owned by: | alper.buluc@gmail.com |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | effects | Version: | 1.6.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
This is the extension of ticket http://bugs.jquery.com/ticket/9678. In Google Chrome setInterval callback will not execute if function called includes insertion and animation.
Tested on:
- MacOs X Lion 10.7.1
- Google Chrome 13.0.782.220
- Only when loaded into new browser tab! Will run as expected after page refresh.
- No trouble in Safari & Firefox
<!doctype HTML> <html> <head> <title></title> <script type="text/javascript" src="js/jquery.1.6.4.min.js"></script> <script> $(document).ready(function(){ timer = setInterval(test, 5000); function test() { var li = ' <li>test</li>'; $('ul').append(li); $('ul li:first-child').hide().fadeIn(); } }); </script> </head> <body> <ul> </ul> </body> </html>
Attachments (0)
Change History (2)
Changed September 19, 2011 04:19PM UTC by comment:1
component: | unfiled → effects |
---|---|
owner: | → alper.buluc@gmail.com |
priority: | undecided → low |
status: | new → pending |
version: | 1.6.4rc1 → 1.6.4 |
Changed October 04, 2011 08:13AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket!
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/
Open the link and click to "Fork" (in the top menu) to get started.