You can change this using fx.interval . Like this:
jQuery.fx.interval = 100; $("input").click(function(){ $("div").toggle( 3000 ); });
Although the documentation states that:
jQuery.fx.interval does not currently work in browsers that support the requestAnimationFrame property, such as Google Chrome 11. This behavior may be changed in a future version.
source share