Answers for "how to disable a form field in html"

2

disable input type button in html

<input type="button" disabled value="Submit">
Posted by: Guest on November-26-2020
-1

html disable form

<!-- disable text form -->
<input disabled>

<style>
  input{
  cursor: not-allowded;
  }
</style>
Posted by: Guest on August-21-2021

Code answers related to "how to disable a form field in html"

Browse Popular Code Answers by Language