I have this snippet of code:
$("a#list-mode").click(function() {
$("#list-fix-pos").removeClass('col-lg-3', 1250, "easeInOutQuart" );
$(this).hide("fade", 1250, true);
$("a#map-mode").show("fade", 1250, true);
});
How can I order the effects so that they take place sequentially? At the moment, all effects transition at once.
Thanks