Skip to content

Instantly share code, notes, and snippets.

@forcewake
Created July 6, 2016 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save forcewake/068c029d55f1cd3a99fc8e24fe9fce25 to your computer and use it in GitHub Desktop.
Save forcewake/068c029d55f1cd3a99fc8e24fe9fce25 to your computer and use it in GitHub Desktop.
/**
* check if a selector match a given Node element
* see https://developer.mozilla.org/en-US/docs/Web/API/Element/matches
* @param element element to check
* @param selector selector to check
* @return true if there is a match
*/
export function matches(element: HTMLElement, selector: string): boolean {
var matches = (<any> element).matches || (<any> element).webkitMatchesSelector || element.msMatchesSelector || (<any> element).mozMatchesSelector || (<any> element).oMatchesSelector;
matches = matches.bind(element);
return matches(selector);
}
/**
* return the closest node (ancestor) matching the given selector
* @param selector selector to check
* @param fromElement element used a root for the checks
* @param withinElement constraint the search to the given element (maximum ancestor)
* @return the closest matching element
*/
export function closest(selector: string, fromElement: HTMLElement, withinElement?: HTMLElement): HTMLElement {
while (fromElement) {
if (matches(fromElement, selector)) {
break;
}
fromElement = fromElement.parentElement;
if (withinElement && fromElement === withinElement) {
return null;
}
}
return fromElement;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment