Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 383 Bytes

get-attribute.md

File metadata and controls

29 lines (19 loc) · 383 Bytes

Get Attribute

Rule Details

As HTML attributes are case insensitive, prefer using lowercase.

👎 Examples of incorrect code for this rule:

el.getAttribute('autoComplete')
el.getAttribute('dataFoo')

👍 Examples of correct code for this rule:

el.getAttribute('autocomplete')
el.getAttribute('data-foo')

Version

4.3.2