Reputation: 8900
is there any list available that maps html attribute to its allowed types, similar to https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes ?
Example :
wrap : Boolean
accept : String
value : Any
tabIndex : Int
...
Upvotes: 0
Views: 55
Reputation: 1399
The list of attributes in HTML 5: https://www.w3.org/TR/html5/index.html#attributes-1
The list of attributes in HTML 4: https://www.w3.org/TR/html4/index/attributes.html
Upvotes: 3