Categories: jQuery

How to disable jQuery animations

Share

The jQuery.fx.off method is used to globally enable or disable jQuery animations whose default value is false which allows animations to run normally.

Syntax:

jQuery.fx.off = true|false;
$.fx.off = true|false;

The true value specifies that the animations should be disabled and the false value is default value which specifies that the animations should be enabled.

Read Also: jQuery jQuery scroll to element

Example to enable or disable jQuery animations:

<button id="disable">Disable</button>
<button id="enable">Enable</button>
<button id="toggle">Toggle animation</button>
<div style="background:#C2C2C2;height:100px;width:100px;"></div>
<script>
$(document).ready(function(){
$("#disable").click(function(){
jQuery.fx.off = true;
});
$("#enable").click(function(){
jQuery.fx.off = false;
});
$("#toggle").click(function(){
$("div").toggle("slow");
});
});
</script>

In this way you can enable/disable the animations by setting the property to true or false.

Go to jQuery reference for more information.

Recent Posts

Fractional CTO Services: Catalyzing Growth in the Logistics Sector

In today's fast-paced digital world, the logistics and supply chain sector is encountering unprecedented challenges…

10 hours ago

How to Increase E-commerce Site Speed for Fast Conversions?

Website navigation and speed play a significant role in the success of online business. Attractive…

1 day ago

Jackpotjoy: The UK Beloved Online Casino

Welcome to your ultimate guide to Jackpot joy, the crown jewel of UK online casinos!…

3 days ago

Comparative Analysis of Hybrid Mobile App Development Frameworks

The demand for mobile apps has risen rapidly. The reason? The modern customers proactively rely…

4 days ago

The Rise of Electric Cars in Modern Mobility

In recent years, a significant shift has occurred in the automotive industry as electric vehicles…

4 days ago

Top 3 South Goa beaches worth visiting in summers

Goa is a tiny emerald state of India which is quite famous for attracting tourists…

4 days ago