Horje

How to add HTML <button> disabled Attribute

A disabled button.

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 clickable again.

Browser Support

Syntax

<button disabled>

index.html
Example: HTML
<button type="button" disabled>Click Me!</button>

Output should be:

How to add HTML <button> disabled Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin