[jQuery] jQuery/Method/.delay() - Method to pause (defer) a running function for a given amount of time
#jQuery #delay() .delay() .delay() causes a running function to pause (defer) for a given amount of time. grammar .delay( duration [, queueName ] ) duration contains the time to stop. The unit when deciding by number is 1/1000 second, and you can decide by slow or fast. Slow corresponds to 600 and Fast corresponds to 200. example When the button is clicked, the paragraph disappears upwards and c..