Which is the correct jQuery statement to fade out a <p> element with duration effect "slow"?
Options:
Explanation:
The jQuery statement to fade out a
elements with duration effect "slow" is:
Tags:
jQuery
Answer:
Which is the correct jQuery statement to fade out a <p> element with duration effect "slow" $("p").fadeOut("slow");.