Globally disable all animations : fx « jQuery « JavaScript Tutorial






<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>








30.44.fx
30.44.1.Globally disable all animations
30.44.2.fx: opacity: 'toggle', duration: 'slow'