Home » HTML » Html miscellaneous » Question
  1. Which of the following is not the fade method in jQuery?
    1. fadeOut()
    2. fadeIn()
    3. fadeOn()
    4. fadeTo()
    5. None of these
Correct Option: C

jQuery has various fade methods including fadeout(), fadeTo(), fadeToggle(), fadeIn().
The syntax of fadeIn() is $(selector).fadeIn(speed,callback);
For fadeout() we use $(selector).fadeOut(speed,callback);
For fadeToggle we use $(slecetor).fadeToggle(speed,callback);
For fadeTo() syntax is $(selector).fadeTo(speed,opacity,callback).



Your comments will be displayed only after manual approval.