disabled option is true or false, to disable button you add disabled attribute to enable you remove disabled attribute
```html
<!-- Disabled -->
<input id="button" type="button" value="+" style="background-color:blue" onclick="me();" disabled/>
<!-- Enabled -->
<input id="button" type="button" value="+" style="background-color:blue" onclick="me();"/>
```