JSPM

classlist

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4895
  • Score
    100M100P100Q144993F
  • License MIT

Not really an Element#classList polyfill.

Package Exports

  • classlist

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (classlist) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ClassList

Not really an Element#classList polyfill. IE9 doesn’t have classList, and other browsers have incomplete implementations; hence, this module.

Usage

This module is intended for use in the browser via browserify. It can be installed via npm:

$ npm install classlist

And then used like so:

var ClassList = require('classlist')

var element = document.querySelector('.foo'),
    list = ClassList(element)

// Add a class:
list.add('bar')

// Remove another:
list.remove('baz')

// Toggle:
list.toggle('quux')

// Check for existence:
if (list.contains('bar')) {
    alert('Whee')
}

API

This module mostly tracks the offical API, but returns the context wherever possible; this allows you to do things like:

ClassList(element)
  .add('foo', 'bar')
  .remove('baz')
  .toggle('quux')

var list = new ClassList(element)

Note that using new is optional. Returns an array-like object of the element’s classes. This object has several handy methods; see below.

list.add(class1 [, class2 [, ... ]])

Adds one or more classes to the element originally used to construct the list. If the class is already present on the element, it is not added again. Returns the context to allow chaining.

list.remove(class1 [, class2 [, ... ]])

Removes one or more classes from the element. Returns the context to allow chaining.

list.toggle(class [, force ])

Toggles a class on the element; adds the class if it is not present, and removes it otherwise. When force is true, the class is always added; when false, the class is removed (i.e. .toggle(class, true) is equivalent to add(class), and .toggle(class, true) is equivalent to add(class)). Returns the context to allow chaining.

list.contains(class)

Returns true if the element has the given class; false otherwise.

Browser support

ClassList should work in just about every browser, up to and including IE6. If it doesn’t, open an issue.

License

MIT.