Map of HTML elements to allowed attributes. Also contains global
attributes under '*'
. Includes attributes from HTML 4, W3C HTML 5,
and WHATWG HTML 5.
Note: Includes deprecated attributes.
Note: Attributes which were not global in HTML 4 but are in HTML 5, are only included in the list of global attributes.
npm:
npm install html-element-attributes
var htmlElementAttributes = require('html-element-attributes');
var globals = htmlElementAttributes['*'];
Yields:
[ 'accesskey',
'class',
'contenteditable',
'contextmenu',
'dir',
'draggable',
'dropzone',
'hidden',
'id',
'is',
'itemid',
'itemprop',
'itemref',
'itemscope',
'itemtype',
'lang',
'slot',
'spellcheck',
'style',
'tabindex',
'title',
'translate' ]
Attributes on the ol
element:
var ol = htmlElementAttributes.ol;
Yields:
[ 'compact', 'reversed', 'start', 'type' ]
Object.<Array.<string>>
— Map of lower-case tag-names to an array of
lower-case attribute names.
The object contains one special key: '*'
, which contains global
attributes which apply to all HTML elements.