Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created March 13, 2013 18:40
Show Gist options
  • Save bittersweetryan/5154898 to your computer and use it in GitHub Desktop.
Save bittersweetryan/5154898 to your computer and use it in GitHub Desktop.
$( 'a' ).on( 'click', function(){
var moveMe = $( '#moveMe' );
moveMe.slideUp(1500,updateQueueCount)
.slideDown(1500,updateQueueCount)
.slideUp(1500,updateQueueCount)
.slideDown(1500,updateQueueCount);
updateQueueCount();
});
function updateQueueCount(){
$('#count').text(
$('#moveMe').queue('fx').length
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment