Home » HTML » Html miscellaneous » Question
  1. Which of the following is not the sliding method in jQuery?
    1. slideIn()
    2. slideUp()
    3. slideDown()
    4. slideToggle()
    5. None of these
Correct Option: A

jQuery have three slide methods namely slideUp(), slideDown() and slideToggle().
Syntax for slideDown() is $(selector).slideDown(speed,callback);
For slideUp() we use $(selector).slideUp(speed,callback).
For slideToggle() method the syntax is $(selector).slideToggle(speed,callback).



Your comments will be displayed only after manual approval.