Computer Science, asked by nabirathakur02, 4 months ago

Which attribute of input tag specifies that an input field be disabled?​

Answers

Answered by anupamadigari
2

Answer:

The disabled attribute for <input> element is used to specify that the input field is disabled. A disabled input is un-clickable and unusable. It is a boolean attribute. The disabled <input> elements are not submitted in the form.

Explanation:

Please mark me in brainlest

Answered by jenisha145
1

A boolean attribute, disabled is a boolean attribute.

Explanation:

  • It specifies that the <input> element should be disabled if it is present.
  • Unusable and un-clickable input elements are disabled.
  • The disabled attribute can be used to prevent a user from using the <input> element unless a condition is met (like selecting a checkbox, etc.).
  • The disabled value might then be removed using JavaScript, making the <input> element usable.
  • Unusable and un-clickable input fields are disabled.
  • When submitting the form, the value of a disabled input field will not be delivered!
Similar questions