Skip to content

Instantly share code, notes, and snippets.

@sergixnet
Forked from jelmerdemaat/gist:4107273
Last active August 29, 2015 14:12
Show Gist options
  • Save sergixnet/1362d5d7d95f8ed66aea to your computer and use it in GitHub Desktop.
Save sergixnet/1362d5d7d95f8ed66aea to your computer and use it in GitHub Desktop.
// JavaScript hasClass, addClass, removeClass
//source: http://www.avoid.org/?p=78
function hasClass(el, name) {
return new RegExp('(\\s|^)'+name+'(\\s|$)').test(el.className);
}
function addClass(el, name)
{
if (!hasClass(el, name)) { el.className += (el.className ? ' ' : '') +name; }
}
function removeClass(el, name)
{
if (hasClass(el, name)) {
el.className=el.className.replace(new RegExp('(\\s|^)'+name+'(\\s|$)'),' ').replace(/^\s+|\s+$/g, '');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment