1.0.1 • Published 9 years ago

event-attributes v1.0.1

Weekly downloads
26
License
MIT
Repository
github
Last release
9 years ago

event-attributes NPM Version Bower Version Build Status

Map of HTML and SVG event attributes.

Installation

Type this at the command line:

npm install event-attributes --save-dev

Usage

Server/Browserify

var eventAttributes = require("event-attributes");

if (eventAttributes.html["onclick"] === true) {
	// is an html event attribute
}

if (eventAttributes.svg["onrepeat"] === true) {
	// is an svg event attribute
}

UMD/AMD/etc

Accessible via define() or window.eventAttributes.