Socket
Socket
Sign inDemoInstall

classlist

Package Overview
Dependencies
2
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    classlist

Not really an Element#classList polyfill.


Version published
Weekly downloads
4.8K
increased by21.56%
Maintainers
1
Install size
128 kB
Created
Weekly downloads
 

Readme

Source

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, false) is equivalent to .remove(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.

Keywords

FAQs

Last updated on 13 Dec 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc