Question:What do you mean by JQuery selector $("strong+em")?
A Selects all elements matched by <em> that immediately follow a sibling element matched by <strong>
B Selects all elements matched by <em> that immediate sibling element matched by <strong>
C Selects all elements matched by <em> that are children of <strong>
D Selects all elements matched by <em> that are descendants of <strong>
+ AnswerA
+ Report