0.0.1 • Published 9 years ago

democracyos-get-attribute v0.0.1

Weekly downloads
8
License
-
Repository
-
Last release
9 years ago

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