- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to globally disable an animation using jQuery?
To globally disable an animation using jQuery, use the jQuery.fx.off() method.
To enable animation:
$("#enable").click(function(){ jQuery.fx.off = false; });
To disable animation, set jQuery.fx.off() as true:
$("#disable").click(function(){ jQuery.fx.off = true; });
You can try to run the following code to globally disable an animation using jQuery:
Example
<html> <head> <title>The jQuery Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script language = "javascript"> $(document).ready(function() { $("#enable").click(function(){ jQuery.fx.off = false; }); $("#disable").click(function(){ jQuery.fx.off = true; }); $("#go").click(function(){ $(".target").animate({left: '+=200px'}, 2000); }); $("#back").click(function(){ $(".target").animate({left: '-=200px'}, 200); }); }); </script> <style> p {background-color:#bca; width:350px; border:1px solid green;} div{position: absolute; left: 50px; top:300px;} </style> </head> <body> <p>Click enable or disable and then go or back button:</p> <button id = "enable"> Enable</button> <button id = "disable"> Disable </button> <button id = "go"> GO</button> <button id = "back"> BACK </button> <div class = "target"> <img src = "./images/jquery.jpg" alt = "jQuery" /> </div> </body> </html>
- Related Articles
- How to disable right click using jQuery?
- How to disable copy content function using jQuery?
- How to enable and disable submit button using jQuery?
- How to disable/enable an input box with jQuery?
- How to disable/ enable checkbox with jQuery?
- How to straighten an Image with animation using FabricJS?
- How to clone an element using jQuery?
- How to use $.fadeTo() method to create animation in jQuery?
- How to add easing effect to your animation with jQuery?
- How to disable a particular jQuery event on a page?
- How to bind an animation to a division element using CSS?
- How to append an element before an element using jQuery?
- How to append an element after an element using jQuery?
- How to create animation using XML file in an Android App using Kotlin?
- How to create animation using XML file in an Android App?

Advertisements