I've had to break this down into two parts despite it being toggles. This is because I want to make the animation differ for adding and removing classes.
When the active class is added I need to UL to wait until the active CSS transition is complete (0.2 seconds) and then fire the jQuery.
When the active class is removed I need to fire the UL width animation first and then on completion remove the active class.
Now because of this it feels dirty and cheap. Is there a simple and elegant solution?
// toggle filters
$(".filter .toggle").on('click', function () {
if ($('.toggle').hasClass('active')) {
$('.filter ul').animate({
width: 'toggle'
}, 500, function () {
$('.filter .toggle').toggleClass('active');
});
} else {
$('.filter').find('.toggle').toggleClass('active').end()
.find('ul').delay(150).animate({
width: 'toggle'
}, 500);
}
});
Here's a fiddle of my dilemma.