Skip to content

Instantly share code, notes, and snippets.

@jeremenichelli
Last active August 29, 2015 14:05
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 jeremenichelli/0a9f51c762cc03ddc74c to your computer and use it in GitHub Desktop.
Save jeremenichelli/0a9f51c762cc03ddc74c to your computer and use it in GitHub Desktop.
getElementsByClassName polyfill
(function(document){
if(!document.getElementsByClassName){
document.getElementsByClassName = function(str){
return document.querySelectorAll('.' + str);
};
}
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment