jQuery UI easing duration probleme

i’m trying to apply some effects to a div with jquery ui ,
the duration doesn’t work ! always takes the default value .

$(document).ready(function() {
    $(".menu-single-hide").click(function() {
        $('.menu-single').hide('slide' ,{easing: 'easeOutExpo'} ,1000 )
    });
});

Related posts

Leave a Reply