Skip to content

Instantly share code, notes, and snippets.

@mstrickland22
Created September 27, 2012 22:07
Show Gist options
  • Save mstrickland22/3796740 to your computer and use it in GitHub Desktop.
Save mstrickland22/3796740 to your computer and use it in GitHub Desktop.
JavaScript - matchesSelector
matchesSelector = (function (doc) {
return doc.matchesSelector ||
doc.webkitMatchesSelector ||
doc.mozMatchesSelector ||
doc.oMatchesSelector ||
doc.msMatchesSelector
}(document.documentElement))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment