Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <button> disabled Attribute

❮ HTML <button> tag

Example

A disabled button:

<button type="button" disabled>Click Me!</button>
Try it Yourself »

Definition and Usage

The disabled attribute is a boolean attribute.

When present, it specifies that the button should be disabled.

A disabled button is unusable and un-clickable.

The disabled attribute can be set to keep a user from clicking on the button until some other condition has been met (like selecting a checkbox, etc.). Then, a JavaScript could remove the disabled value, and make the button usable.


Browser Support

Attribute
disabled Yes Yes Yes Yes Yes

Syntax

<button disabled>

❮ HTML <button> tag