Skip to content

Instantly share code, notes, and snippets.

@triple-j
Forked from elijahmanor/polyfill.element.matches.js
Last active August 29, 2015 14:24
Show Gist options
  • Save triple-j/70020fc28d740738ce9e to your computer and use it in GitHub Desktop.
Save triple-j/70020fc28d740738ce9e to your computer and use it in GitHub Desktop.
if (Element && !Element.prototype.matches) {
Element.prototype.matches = Element.prototype.matchesSelector ||
Element.prototype.mozMatchesSelector ||
Element.prototype.msMatchesSelector ||
Element.prototype.oMatchesSelector ||
Element.prototype.webkitMatchesSelector;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment