jQuery - Properties
In jQuery, properties generally refer to the attributes and values associated with DOM elements that can be accessed or manipulated using jQuery methods.
jQuery Properties
In the following table, we have listed all the jQuery Properties −
| Sr.No. | Methods & Description |
|---|---|
| 1 | jquery
The jquery property returns the version of the jQuery library in use. |
| 2 | jQuery.fx.interval
Sets the interval (in milliseconds) for running animations. Default is 13ms. |
| 3 | jQuery.fx.off
If true, disables all animations. If false, animations are enabled. |
| 4 | length
Returns the number of elements in the jQuery collection. |
Advertisements