xtag.requestFrameA function to wrap the native requestAnimationFrame, or polyfill it in browsers missing the feature.xtag.requestFrame(FUNCTION) ArgumentsTypeDescriptionFUNCTIONFunctionThe function you would like executed before each browser render loop. JavaScriptxtag.requestFrame(function(){ alert(new Date().getTime()); // alerts the ms epoch time before each render });