I want one div to fade out, for their to then be a brief pause, and after that for another div to fade in.
This is my attempt but ot doesn't work. The fadein animation starts before the fadeout one has finished.
$('.nav .filters').fadeOut('200');
$('.nav .map-r').delay('300').fadeIn('200');
Whats really weird is it works fine if I make each annimation 10x longer:
$('.nav .filters').fadeOut('2000');
$('.nav .map-r').delay('3000').fadeIn('2000');
