Skip to content

Instantly share code, notes, and snippets.

@AndryWJ
Created April 5, 2019 09:04
Show Gist options
  • Save AndryWJ/1713dc94a020e39de066bde50292589b to your computer and use it in GitHub Desktop.
Save AndryWJ/1713dc94a020e39de066bde50292589b to your computer and use it in GitHub Desktop.
function isClass(classs) {
var el = document.getElementsByClassName(classs);
if (el.length != 0) {
return true
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment