event-attributes

Map of HTML and SVG event attributes.

Usage no npm install needed!

<script type="module">
  import eventAttributes from 'https://cdn.skypack.dev/event-attributes';
</script>

README

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.