jQuery Properties Complete Reference Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report jQuery properties are used to do some specific operations. Syntax$().PropertyExample: This example uses jQuery.fx.off property to disable the animation HTML <!DOCTYPE html> <html> <head> <title> jQuery jQuery.fx.off property </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </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: PropertiesDescriptioncontext Contains original value that passed to it.jqueryReturn the jQuery version number.lengthCount a number of the elements of the jQuery object.fx.off Its default value is false which is used to allow the animation to run normally.supportRepresent the different browser features or bugs.fx.intervalIt is used to change the animation firing rate in milliseconds. Its default value is 13ms. Create Quiz Comment V Vishal_Khoda Follow 1 Improve V Vishal_Khoda Follow 1 Improve Article Tags : Web Technologies JQuery jQuery-Propertie Explore jQuery Tutorial 7 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like