HTML | DOM Input Checkbox disabled Property Last Updated : 06 Mar, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The Input Checkbox disabled property in HTML DOM is used to set or return whether the Input Checkbox field must be disabled or not. A disabled checkbox is unclickable and unusable. It is a boolean attribute and used to reflect the HTML Disabled attribute. Syntax: It returns the Input Checkbox disabled property. checkboxObject.disabled It is used to set the Input Checkbox disabled property. checkboxObject.disabled = true|false Property Values: It contains two property values which are listed below: true: It defines that the checkbox is disabled. False: It has the default value. It defines that the checkbox is not disabled. Return Value: It returns a boolean value which represents the checkbox is disabled or not. Example 1: This example sets the Input Checkbox disabled property. html <!DOCTYPE html> <html> <head> <title> DOM Input Checkbox disabled Property </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2>DOM Input Checkbox disabled Property</h2> <form id="myGeeks"> <!-- Below input elements have attribute checked --> <input type="checkbox" name="check" id="GFG" value="1" disabled>Checked by default<br> <input type="checkbox" name="check" value="2"> Not checked by default<br> </form><br> <button onclick="myGeeks()"> Submit </button> <!-- Script to disable checkbox --> <script> function myGeeks() { var g = document.getElementById("GFG").disabled = false; } </script> </body> </html> Output: Before clicking on the Button: After clicking on the Button: Example 2: This example returns the Input Checkbox disabled property. html <!DOCTYPE html> <html> <head> <title> DOM Input Checkbox disabled Property </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2>DOM Input Checkbox disabled Property</h2> <form id="myGeeks"> <!-- Below input elements have attribute checked --> <input type="checkbox" name="check" id="GFG" value="1" disabled>Checked by default<br> <input type="checkbox" name="check" value="2"> Not checked by default<br> </form><br> <button onclick="myGeeks()"> Submit </button> <p id="sudo" style="color:green;font-size:25px;"></p> <!-- Script to return Input Checkbox disabled Property --> <script> function myGeeks() { var g = document.getElementById("GFG").disabled; document.getElementById("sudo").innerHTML = g; } </script> </body> </html> Output: Before clicking on the Button: After clicking on the Button: Supported Browsers: The browser supported by DOM input Checkbox disabled property are listed below: Google Chrome Internet Explorer Firefox Opera Safari Comment More infoAdvertise with us Next Article HTML | DOM Input Checkbox defaultValue Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Color disabled Property The DOM Input Color disabled Property in HTML DOM is used to set or return whether a color picker should be disabled or not. A Disabled element is usually is unusable and un-clickable and are usually grey in color by default in all the Browser. This Property is used to reflect the HTML disabled attr 2 min read HTML DOM Input Button disabled Property The Input Button disabled Property in HTML DOM is used to set or return whether the Input Button Field should be disabled or not. Disabled elements are shown in gray by default and are unusable and un-clickable. Syntax: It returns a disabled property. buttonObject.disabled It is used to set the dis 2 min read HTML | DOM Input Date disabled Property The Input date disabled property is used to set or return whether a date field should be disabled, or not. An element becomes unusable and un-clickable if it is disabled. Such elements are generally rendered in gray by browsers. The HTML disable attribute is reflected by the Date disabled property.S 2 min read HTML | DOM Input Checkbox checked Property The DOM Input Checkbox Property is used to set or return the checked status of a checkbox field. This property is used to reflect the HTML Checked attribute. Syntax: It is used to return the checked property.checkboxObject.checkedIt is used to set the checked property.checkboxObject.checked = true|f 2 min read HTML | DOM Input Checkbox defaultValue Property The DOM Input Checkbox defaultValue Property is used to set or returns the default value of an Input Checkbox field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value 2 min read HTML DOM Input Checkbox defaultChecked Property The defaultChecked property in HTML DOM reflects the default checked state of an input checkbox as specified in the HTML. It indicates whether the checkbox was initially selected or not, without reflecting changes made after the page loads.SyntaxcheckboxObject.defaultCheckedReturn Values: It returns 2 min read Like