jQuery.dequeue()


jQuery.dequeue( element [, queueName ] )Возвращает: undefined

Описание: Execute the next function on the queue for the matched element.

  • Добавлен в версии: 1.3jQuery.dequeue( element [, queueName ] )

    • element
      Тип: Element
      A DOM element from which to remove and execute a queued function.
    • queueName
      Тип: String
      A string containing the name of the queue. Defaults to fx, the standard effects queue.

Note: This is a low-level method, you should probably use .dequeue() instead.

When jQuery.dequeue() is called, the next function on the queue is removed from the queue, and then executed. This function should in turn (directly or indirectly) cause jQuery.dequeue() to be called, so that the sequence can continue.

Примеры использования