Open In App

jQuery Properties Complete Reference

jQuery properties are used to do some specific operations. 

Syntax



$().Property

Example: This example uses jQuery.fx.off property to disable the animation




<!DOCTYPE html>
<html>
  
<head>
    <title>
        jQuery jQuery.fx.off property
    </title>
      
    <script src=
    </script>
      
    <style>
        .box {
            background:green;
            height:100px;
            width:100px;
            margin:50px;
        }
    </style>
</head>
  
<body>
    <center>
        <h1 style = "color:green;" >
            GeeksForGeeks
        </h1>
          
        <h2> jQuery.jQuery.fx.off property</h2>
          
        <button id="disable">
            jQuery.fx.off = true ( Disable )
        </button>
          
        <br><br>
          
        <button id="toggle">
            Toggle animation
        </button>
          
        <div class="box"></div>
          
        <!-- Script to use jQuery.fx.off property -->
        <script>
            $(document).ready(function() {
                $("#disable").click(function() {
                    jQuery.fx.off = true;
                });
                  
                $("#toggle").click(function() {
                    $("div").toggle("slow");
                });
            });
        </script>
    </center>
</body>
  
</html>

Output:



 

jQuery Properties Complete List:

 Properties

Description

Example

context  Contains original value that passed to it.
Try
jquery Return the jQuery version number.
Try
length Count a number of the elements of the jQuery object.
Try
fx.off  Its default value is false which is used to allow the animation to run normally.
Try
support Represent the different browser features or bugs.
Try
fx.interval It is used to change the animation firing rate in milliseconds. Its default value is 13ms.
Try

Article Tags :