Skip to content

Instantly share code, notes, and snippets.

@kawabataryo
Last active August 29, 2015 14:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kawabataryo/cab349e550f1003559c5 to your computer and use it in GitHub Desktop.
Save kawabataryo/cab349e550f1003559c5 to your computer and use it in GitHub Desktop.
function hasClass(selector,str){
var el = document.querySelector(selector);
var className = el.className();
var classArray = className.split(' ')
if(classArray.indexOf(str) !== -1){
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment