Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
attribute data-* can be used for custom data storage or semantic elements like id, class, aria. <p data-date-added="3/9/2021" data-superseded-by-amendment="1"> Complex systems are the bes...
Answer
#2: Post edited
- attribute data-* can be used for custom data storage or semantic elements like id, class, aria.
- <p data-date-added="3/9/2021" data-superseded-by-amendment="1">
- Complex systems are the best way to start a project.
- </p>
- <p data-date-added="7/30/2024" data-amendment-id="1">
- A complex system that works is invariably found to have evolved from a simple system that worked...
- </p>
- Flexible method, can be parsed with JavaScript for dynamic behavior.
- attribute data-* can be used for custom data storage or semantic elements like id, class, aria.
- ```html
- <p data-date-added="3/9/2021" data-superseded-by-amendment="1">
- Complex systems are the best way to start a project.
- </p>
- <p data-date-added="7/30/2024" data-amendment-id="1">
- A complex system that works is invariably found to have evolved from a simple system that worked...
- </p>
- ```
- Flexible method, can be parsed with JavaScript for dynamic behavior.
#1: Initial revision
attribute data-* can be used for custom data storage or semantic elements like id, class, aria. <p data-date-added="3/9/2021" data-superseded-by-amendment="1"> Complex systems are the best way to start a project. </p> <p data-date-added="7/30/2024" data-amendment-id="1"> A complex system that works is invariably found to have evolved from a simple system that worked... </p> Flexible method, can be parsed with JavaScript for dynamic behavior.