Skip to content

Instantly share code, notes, and snippets.

@ErDmKo
Created December 4, 2013 17:21
Show Gist options
  • Save ErDmKo/7791657 to your computer and use it in GitHub Desktop.
Save ErDmKo/7791657 to your computer and use it in GitHub Desktop.
Image loader even caller
var onLoader = function onloader(call, selector)
{
var loaderTimer = setInterval(function()
{
if (
!$(selector).filter(function()
{
return !this.complete
}).length
)
{
clearInterval(loaderTimer);
call();
}
}, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment