Skip to content

Instantly share code, notes, and snippets.

@softwarespot
Created January 13, 2016 15:28
Show Gist options
  • Save softwarespot/c91b207a6d8e7846b37e to your computer and use it in GitHub Desktop.
Save softwarespot/c91b207a6d8e7846b37e to your computer and use it in GitHub Desktop.
function closest(element, fn) {
return element && (fn(element) ? element : closest(element.parentNode, fn));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment