English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

jQuery :animated Selector

jQuery Selectors

The :animated selector selects all currently animated elements.

Syntax:

$":animated")

Example

Select any element that is currently animated:

$("document").ready(function(){
  $("div:animated").css("border-"radius", "0");
});
Test and See‹/›

jQuery Selectors