Question: Using jQuery, remove class subtle from the second tag. SHOW EXPECTED 2 HTML CSS JavaScript 3 4 1 2 3 First paragraph 4 Second paragraph




Using jQuery, remove class "subtle" from the second
tag. SHOW EXPECTED 2 HTML CSS JavaScript 3 4 1 2 3
First paragraph
4
Second paragraph
5
Third paragraph
6
Fourth paragraph
7
Fifth paragraph
4 Check Try again Feedback? Using jQuery, remove class "subtle" from the second
tag. SHOW EXPECTED 2 HTML CSS JavaScript 3 1 .subtle { 2 background-color: coral; 3 } 4 4 Check Try again Using jQuery, remove class "subtle" from the second
tag. SHOW EXPECTED HTML CSS JavaScript 1 2 /* Your solution goes here */ 3 $(document).ready(function() { 4 $("p:eq(1)").removeClass("subtle"); 5 6 }); 4 Check Try again Does the first
have the "subtle" class? Yours Yes * Does the second
have the "subtle" class? Yours and expected differ. See highlights below. Yours Yes Expected No Does the third
have the "subtle" class? Yours Yes Does the fourth
have the "subtle" class? Yours Yes Does the fifth
have the "subtle" class? Yours Yes Your webpage Expected webpage First paragraph First paragraph Second paragraph Second paragraph Third paragraph Third paragraph Fourth paragraph Fourth paragraph Fifth paragraph Fifth paragraph
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
