Disable all animations
Description
The following code shows how to disable all animations globally.
Example
<html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from w w w .j a v a 2 s. co m-->
jQuery.fx.off = true;
$("div").toggle("slow");
});
</script>
<style>
div {
position: absolute;
display: none;
}
</style>
</head>
<body>
<div>java2s.com</div>
</body>
</html>