An open API service indexing awesome lists of open source software.

https://github.com/blimpllc/jquery.state

Simple query plugin to set/get element state via data attributes (data-state).
https://github.com/blimpllc/jquery.state

Last synced: 10 months ago
JSON representation

Simple query plugin to set/get element state via data attributes (data-state).

Awesome Lists containing this project

README

          

# jquery.sate

Simple query plugin to set/get element state via data attributes (data-state).

## Get current state

$('element').state(); // returns string or null

Returns the current state of the element or null if the element has no data-state attribute.

## Set current state

//

$('element').state('selected');

Sets a data-state attribute with the state specified.