HTML Support Multiple Selections Code

title: Contents 
style: nestedList # TOC style (nestedList|inlineFirstLevel)
minLevel: 1 # Include headings from the specified level
maxLevel: 4 # Include headings up to the specified level
includeLinks: true # Make headings clickable
debugInConsole: false # Print debug info in Obsidian console

Overview

You can use the multiple attribute with the <input> and <select> elements to allow users to select/enter multiple values at once.

Code Snippet

<input type="file" multiple />
<select multiple>
    <option value="java">Java</option>
    <option value="javascript">JavaScript</option>
    <option value="typescript">TypeScript</option>
    <option value="rust">Rust</option>
</select>

Details

About

This note is about …

See Also


Appendix

Note created on 2024-04-18 and last modified on 2024-04-18.

LIST FROM [[HTML - Support Multiple Selections]] AND -"CHANGELOG" AND -"04-RESOURCES/Code/HTML/HTML - Support Multiple Selections"

(c) No Clocks, LLC | 2024