Some web users may find web page effects redundant and time-consuming, especially for returning visitors. jQuery has a way to disable all animations from one access point but still supports the animate method and its final value.
<script>
$.fx.off = true;
$(document).ready(function () {
$('#animate').click(function () {
$('.box').animate({ width: '+=100', height: '+=100' });
});
});
</script>