Tim
Tim

Reputation: 7056

jQuery animation callback not working

Hey, if anyone could please help me then it would be much appreciated. Basically, I want to navigate to a new page once this animation has complete. Using the code below, the animation works fine but hen the navigation doesn't happen.

Does anyone have any ideas or suggestions? Many thanks, Tim

$("a").click(function(event){
    event.preventDefault();
    var driver = $(this).attr('href');

   $(".content-center").animate({height: "0px"}, 500, function(){
        navigate(driver);
    });
});

Upvotes: 1

Views: 631

Answers (1)

interjay
interjay

Reputation: 110069

The navigate function is not supported on all browsers. Instead, use:

window.location.href = driver;

Upvotes: 3

Related Questions