Enlist few jquery methods used to provide effects?

devquora
devquora

Posted On: Feb 22, 2018

 

Some of the jQuery methods to provide effects are:

  • animate() - It is used to run custom animation on the selected items.
  • delay() - It sets a delay time for the queued functions to work on the selected items.
  • show() - It is used to show the selected items.
  • stop() - It stops the current animation on the selected items.
  • hide() - It is used to hide the selected items.
  • fadeIn() - It fades in the selected items.
  • fadeOut() - It fades out the selected items.
  • toggle() - It toggles the animation between the hide() and show() methods on the selected items.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    jQuery Interview Questions

    What is jQuery?

    jQuery is a lightweight JavaScript library which gives a quick and simple method for HTML DOM traversing and manipulati..

    jQuery Interview Questions

    What are the advantages of JQuery ?

    There are many advantages of JQuery. Some of them are :It is more like a JavaScript enhancement so there is no overhea..

    jQuery Interview Questions

    What are the different type of selectors in Jquery?

    There are 3 types of selectors in JqueryCSS Selector XPath Selector Custom Selector..