{"name":"jQuery.fx.interval","type":"property","title":"jQuery.fx.interval","deprecated":null,"removed":null,"desc":"The rate (in milliseconds) at which animations fire.","categories":["effects/custom-effects","properties/global-jquery-object-properties","version/1.4.3"],"entries":[{"return":"Number","signatures":{"added":"1.4.3"},"examples":{"desc":"Cause all animations to run with less frames.","code":"\njQuery.fx.interval = 100;\n$( \"input\" ).click(function() {\n $( \"div\" ).toggle( 3000 );\n});\n","css":"\n div {\n width: 50px;\n height: 30px;\n margin: 5px;\n float: left;\n background: green;\n }\n","html":"\n
\n\n"},"longdesc":"\nThis property can be manipulated to adjust the number of frames per second at which animations will run. The default is 13 milliseconds. Making this a lower number could make the animations run smoother in faster browsers (such as Chrome) but there may be performance and CPU implications of doing so.
\nSince jQuery uses one global interval, no animation should be running or all animations should stop for the change of this property to take effect.
\n "}]}