I want to hide/ show div both at the same time but the effect does not work immediately.
Here is my code :
$('a').on('click', function(){
var div_hide = $(this).parent();
var div_show = $(this).attr('href');
$(div_hide).hide("slide", { direction: "left" }, 500);
$(div_show).show("slide", { direction: "right" }, 800); //Doesn't work
//$(div_show).delay(500).show("slide", { direction: "right" }, 800); //Work but i must waiting...
});
Here a fiddle http://jsfiddle.net/e3tAZ/
Do you have an alternative solution maybe ?
Set
queue
to falseRead the docs
fiddle