Question: Consider the following code snippet:$('a.arrow-1').click(function () {
$('.second-row').slideUp();
$(this).parent('.first-row').siblings('.second-row').slideDown();
});
The order of the animations of this code snippet are:
A
B
C
D
The targeted parent sibling .second-row will slide up, then .second-row will slide down.
B
second-row will slide up, then the targeted parent sibling .second-row will slide down.
C
Both the targeted parent sibling .second-row will slide down and the .second-row will slide up actions will occur at the same time.
D
None
Note: Not available