Skip to content

Instantly share code, notes, and snippets.

@imbcmdth
Last active December 29, 2015 22:59
Show Gist options
  • Save imbcmdth/7739618 to your computer and use it in GitHub Desktop.
Save imbcmdth/7739618 to your computer and use it in GitHub Desktop.
later function
var later = Function.bind.bind(window.setTimeout, window);
// Usage
element.addEventListener('click', later(foo, 1000));
// On click, `foo` will be executed after 1 second with the usual event parameters passed along
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment