democracyos-get-attribute

0.0.1 • Public • Published

web component logo

getAttribute

A cross-browser implementation of getAttribute.

Source found here: http://stackoverflow.com/a/3755343/361337 written by Vivin Paliath

Uses default getAttribute if it's available.

Component

Built to be used with the Component package manager. Read more here:

Installation

$ component install javve/get-attribute

Example

<div id="test" data-value="myValue"></div>
var getAttribute = require('get-attribute');
 
var el = document.getElementById('test')
var dataValue = getAttribute(el, 'data-value');
 
alert(dataValue); // Alerts "myValue"

API

getAttribute(element, attribute)

Return the value for attribute at element.

License

MIT

Package Sidebar

Install

npm i democracyos-get-attribute

Weekly Downloads

13

Version

0.0.1

License

none

Last publish

Collaborators

  • democracyos