Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Globally disable all animations

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){                             jQuery.fx.off = true;                $("div").toggle("slow");                 });     </script>   <style>   div {      position: absolute;      display:none;   }   </style>        </head>   <body>     <body>         <div>asdf</div>     </body> </html>