This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file Functionality for checking and manipulating classes on DOM Elements (i.e., checking if an element has a class, | |
* removing a class from an element, and adding a class to an element. Updated to use better naming conventions, | |
* use array joins instead if string concats (operation speed), and boolean returns to more easily be able to tell when | |
* functions performed successfully within an app | |
* @author Josh Rhoades <http://joshuarhoades.com/> | |
* @added 04/25/13 | |
* @version 1.0.0 | |
* @see {@link https://gist.github.com/jelmerdemaat/4107273|Original before fork} | |
* @see {@link http://www.avoid.org/?p=78} |