Hello!

Here is my setup: I want to click my link, have the content box
animate to the proper width, and then have my HTML page appear once
the animation is completed. In the snipped below, the content of the
HTML pages loads before the animation is complete. How do I make this
work?


   $("#link").click(function(){
      $("#contentbox").animate({width: "550px"}, 300 );
          $("#contentbox").load("interactive.html");
    });


Thanks,
Jason

Reply via email to