@oblomov When using `checked` or `hidden` I do like not to add any value.
```
<input type="checkbox" checked />
```
Here's an interesting take with link to the HTML spec:
@oblomov When using `checked` or `hidden` I do like not to add any value.
```
<input type="checkbox" checked />
```
Here's an interesting take with link to the HTML spec:
I saw a recent discussion at work on how to approach code style for data attributes in #HTML
When you want to use them as boolean, do you set the string "true" or leave it empty and check for the attribute existence?