Multiple Queues in jQuery
        Posted  
        
            by kingjeffrey
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by kingjeffrey
        
        
        
        Published on 2010-05-21T20:39:26Z
        Indexed on 
            2010/05/21
            20:40 UTC
        
        
        Read the original article
        Hit count: 226
        
I am having problems using multiple queues in jQuery. Consider the following example:
$('#example').click(function() {
  $(this).delay(1000, 'fx2').queue('fx2', function() {
    alert('here');
  });
});
The alert never fires. Why?
© Stack Overflow or respective owner