I've created custom toggle slide animation. Its working fine as expected but its not sliding on first click. if you click on map arrow then you will see the toggle class will apply to it but map will not slide. but if you click twice more then it will slide.
I'm quite new to jquery and I've also searched alot on it but nothing find any solution. Here is the code;
$('.map_btn').click(function() {
$('.map_btn').toggleClass('toggle');
$('.map_btn').on('click', function() {
$('.map_wrapper').stop().animate({
opacity: 1,
height: 420
});
});
$('.map_btn.toggle').on('click', function() {
$('.map_wrapper').stop().animate({
opacity: 0,
height: 0
});
});
});

$.on()methods after the click? That's a setter only at that first fire. That's your problem. Move them out of the first$.click(). – Jared Farrish Jun 24 '12 at 7:32