jQuery.fx.interval

The rate (in milliseconds) at which animations fire.

jQuery.fx.interval()🡢 Number

This property is deprecated as of version 3.0, and has no effect in browsers that support the requestAnimationFrame method.

On browsers that do not support requestAnimationFrame, this property can be changed to adjust the interval at which animations will run. The default is 13 milliseconds.

Since jQuery uses one global interval, no animation should be running or all animations should stop for the change of this property to take effect.

Cause all animations to run with less frames.

JS
<p><input type="button" value="Run" /></p>
<div></div>
CSS
div {
  width: 50px;
  height: 30px;
  margin: 5px;
  float: left;
  background: green;
}
HTML
jQuery.fx.interval = 100;
$("input").click(function () {
  $("div").toggle(3000);
});
DEMO

Looking for a Web Developer?

👋

Hi! I'm Basti, author of this site. If you are looking for a web developer with 15+ years of experience, holla at me!

Be it the good 'ol jQuery, vanilla JS or modern frameworks like Vue and Svelte, front- or backend, I can help you.

Just write me at jobs@jqapi.com :)