किसी तत्व को अक्षम करने के लिए अक्षम विशेषता का उपयोग करें। विशेषता का उपयोग निम्नलिखित तत्वों के लिए किया जा सकता है:<बटन>, <इनपुट>, <चयन>,
उदाहरण
आप अक्षम विशेषता को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <p>Which sports do you like?</p> <form action = "" method = "get"> <input type = "checkbox" name = "vehicle" value = "football" checked> Football<br> <input type = "checkbox" name = "vehicle" value = "cricket" checked> Cricket<br> <input type = "checkbox" name = "vehicle" value = "hockey"> Hockey<br> <input type = "submit" value = "Submit" disabled> </form> </body> </html>