Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Last active September 30, 2025 12:47
Show Gist options
  • Select an option

  • Save elijahmanor/6452535 to your computer and use it in GitHub Desktop.

Select an option

Save elijahmanor/6452535 to your computer and use it in GitHub Desktop.
Element matches Polyfill
if (Element && !Element.prototype.matches) {
var proto = Element.prototype;
proto.matches = proto.matchesSelector ||
proto.mozMatchesSelector || proto.msMatchesSelector ||
proto.oMatchesSelector || proto.webkitMatchesSelector;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment