Review the HTML below. You want to select the first item in the list and fade it out, then select the subsequent items up to (but not including) the active item, and fade them out halfway. How can you set up a single chain to do this?html Item 1 Item 2 Item 3 Item 4 Item 5 Item 6

🎲 Try a Random Question  |  Total Questions in Quiz: 75  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
jQuery Quiz — practice the complete quiz, review flashcards, or try a random question.

jQuery MCQs For LinkedIn Skill Assessments.


Review the HTML below. You want to select the first item in the list and fade it out, then select the subsequent items up to (but not including) the active item, and fade them out halfway. How can you set up a single chain to do this?<br>html<br><ul class='items'><br> <li>Item 1</li><br> <li>Item 2</li><br> <li>Item 3</li><br> <li class='active'>Item 4</li><br> <li>Item 5</li><br> <li>Item 6</li><br></ul><br>