Skip to content

Instantly share code, notes, and snippets.

@jasondmoss
Created December 10, 2019 03:48
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 jasondmoss/a9c5c25e2d53004fcbc4716b11af4bb2 to your computer and use it in GitHub Desktop.
Save jasondmoss/a9c5c25e2d53004fcbc4716b11af4bb2 to your computer and use it in GitHub Desktop.
Polyfill Methods for Internet Explorer 11 and below.
/**
* Polyfill for `Element.prototype.matches()`
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
*/
if (!Element.prototype.matches) {
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
}
/* <> */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment