Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
            $("#show").click(function () {
              var n = $("div").queue("fx");
              $("span").text("Queue length is: " + n.length);
            });
            function runIt() {
              $("div").show("slow");
              $("div").animate({left:'+=20'},2000);
              $("div").hide("slow");
              $("div").show(1200);
              $("div").slideUp("normal", runIt);
            }
            runIt();
        });
    

  
  
    
        Show Length of Queue