Question:You need to write jQuery code to select the first heading (h2) tag on the page and then slowly fade the item into view. Which line of code would accomplish this task?
A $("#h21").fadeIn(500);
B $("h2:first").fadeIn("slow");
C $(".h2:first").fadeIn(500);
D $("h2:first").fadeIn(500);
+ AnswerB
+ Report