Changes between Initial Version and Version 1 of Ticket #62549, comment 1
- Timestamp:
- 11/25/2024 04:18:15 AM (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #62549, comment 1
initial v1 1 1 Hi @kkmuffme, 2 2 3 Thanks for raising the ticket. I think `checked='checked'` would work as expected because HTML treats any value for a boolean attribute (including checked="checked", checked="true", or even checked="randomText") as equivalent to the presence of the attribute. 3 Thanks for raising the ticket. I think `checked='checked'` would work as expected because HTML treats any value for a boolean attribute (including checked="checked", checked="true", or even checked="randomText") as equivalent to the presence of the attribute. (i.e. true/checked) 4 4 5 5 But considering best practices in mind, we can use (just) `checked` there.