Prev Demo
jQuery
>
Jquery.Fx.Off - Toggle Animation Effect
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> </head> <body> <input type="button" id="btnFxOff" value="Toggle Animation" /> <script> $("#btnFxOff").click(function () { $.fx.off = !$.fx.off; }); </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output