[jQuery] Wait for animation to complete
Hello,
I've got three div-containers with custom animations:
$('#container1').click(
function() {
slide("#container1"); // custom animation
}
);
I want to forbid clicking (=animations of) container2 and container3
while the animation of container1 still is in progress.
Could you help me?
TIA,
Torsten