Changes between Initial Version and Version 1 of Ticket #8489, comment 1
- Timestamp:
- Mar 10, 2011, 6:09:48 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8489, comment 1
initial v1 1 How about 1 I guess 2 2 3 3 {{{ 4 $(this).delay(5000).queue( function( ){4 $(this).delay(5000).queue( function(next){ 5 5 non_jquery_function(); 6 $(this).dequeue();6 next(); 7 7 }); 8 8 }}} … … 10 10 ? 11 11 12 Is th at the way to do it? If so, I'm not able to achieve my result still. :/12 Is the way to do it. However, it'd still be convenient to just use a callback within .delay().