MCQs > IT & Programming > JQuery > The 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:

JQuery MCQs

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:

Answer

Correct Answer: .second-row will slide up, then the targeted parent sibling .second-row will slide down.

Explanation:

Note: This Question is unanswered, help us to find answer for this one

JQuery Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it