Attribute enabled from HTML5 elements belongs to which interface?

1

I noticed that some elements of HTML accept the enabled attribute, but I could not identify in W3C the interface that shows its possibility of its use. Thank you!

    
asked by anonymous 17.04.2016 / 02:10

1 answer

2

There is no enabled attribute in HTML. There is a property .enabled in the Audio API , and there is a pseudo-selector :enabled in the CSS API .

What% of% would you expect in elements of enabled and that CSS has , "it says" <form> but it means "non-disabled". That is, it is the presence or absence of the enabled attribute that indicates whether an element is active ( disabled ) or not.

    
17.04.2016 / 09:05