Requires
Methods
(static) acceptData(el) → {Boolean}
Verifica si el objeto dado es un Elemento
Name | Type | Description |
---|---|---|
el | Element | El elemento |
- Source
- Type:
- Boolean
(static) acceptDataSet(el) → {Boolean}
Valida si se puede establece o usar el Atributo DataSet del HTMLElement
Name | Type | Description |
---|---|---|
el | Element | El Elemento |
- Source
- Type:
- Boolean
(static) access(el, key, data) → {Object|String}
Obtiene o Establece el atributo
Name | Type | Description |
---|---|---|
el | Element | El elemento |
key | String | La clave |
data | String | | El valor |
- Source
El valor obtenido o establecido
- Type:
- Object |
String
(static) attrToStorage(elem, key, data) → {Object|undefine|Array}
Establece los atributos data de un elemento
Name | Type | Description |
---|---|---|
elem | Element | Elemento a manipular |
key | String | La clave del atributo data ejemplo data-valor; key = valor |
data | Object | | El resultado del atributo data |
- Source
El resultado del atributo data obtenido
- Type:
- Object |
undefine | Array
(static) data(els, …arg) → {*}
Establece u Obtiene los atributos de Data
Name | Type | Attributes | Description |
---|---|---|---|
els | NodeList | | El o los Elementos | |
arg | Array | | <repeatable> | Cualqier argumento según su accion hasta 2 maximo |
- Source
- Type:
- *
(static) get(el, key) → {Object|String|Boolean}
Obtiene el valor del Atributo o todos
Name | Type | Description |
---|---|---|
el | Element | El elemento |
key | String | | La clave a buscar si se omite se buscaran todos los atributos |
- Source
- Type:
- Object |
String | Boolean
(static) has(el, key) → {Boolean}
Verifica si el elemento tiene la clave dada
Name | Type | Description |
---|---|---|
el | Element | El elemento |
key | String | La clave |
- Source
- Type:
- Boolean
(static) remove(el, key) → {void|Boolean}
Remueve una clave dada
Name | Type | Description |
---|---|---|
el | Element | El elemento |
key | String | La clave |
- Source
- Type:
- void |
Boolean
(static) set(el, key, data) → {Object|String}
Establece el nuevo valor de la propiedad
Name | Type | Description |
---|---|---|
el | Element | El elemento |
key | String | | La clave |
data | Object | | El valor a establecer |
- Source
El nuevo valor establecido
- Type:
- Object |
String
(static) storage(el, config) → {Object}
Obtiene los datos Almacenados en el Elemento
Name | Type | Default | Description |
---|---|---|---|
el | Element | El elemento | |
config | Boolean | true | Indica si el objeto sera configurable |
- Source
- Type:
- Object