ClassList
This module aims to match the behaviour of Element#classList
, without polyfilling it.
IE9 doesn't have the native classList
, and other browsers have incomplete implementations. This module tries to bridge the gaps.
Installation
npm install classlist
(or yarn add classlist
)
Usage
This module is intended for use in the browser via a module bundler such as Webpack or Browserify. Sample usage:
var classList = var element = documentvar list = // Add a class:list // Remove a class:list // Toggle a class:list // Replace class 'foo' with 'bar'list // Check if the element has a class:if list console
API
This module tries to follow the native API as closely as possible.
-
list = new ClassList(element)
Constructor. Create a new
ClassList
object.new
is optional.// Object style, "new"var ClassList =var list = element// Function style, no "new"var classList =var list = -
list.item(index)
orlist[index]
Returns the class at the given
index
. Example:var div = documentdivclassName = 'a b'var list =list // 'a'list1 // 'b' -
list.contains(class)
Returns true if the element has the given class; false otherwise.
-
list.add(class1 [, class2 [, ... ]])
Adds one or more classes to the element associated with
list
. If the class is already present on the element, it is not added again. -
list.remove(class1 [, class2 [, ... ]])
Removes one or more classes from the element, if present.
-
list.toggle(class [, force ])
Toggles the given class; removes the class if it is present, or adds the class if it is not present.
When
force
is true, the class is always added (i.e. it is equivalent to callingadd
). Whenforce
is false, the class is always removed (i.e. it is equivalent to callingremove
). This can be useful when conditioning on an outcome; for example,list// is equivalent to:if counter > 0listelselistReturns
true
if the class is now present, orfalse
otherwise. -
list.replace(oldClass, newClass)
If
oldClass
is present on the element, it is replaced bynewClass
. IfoldClass
is not present, this method has no effect.Returns
true
if the class was replaced,false
otherwise.
Browser support
This module has been tested for compatibility with IE8+, and may work in even older browsers. If it doesn't, open an issue.
License
MIT