Open jpdevries opened 8 years ago
The HTML5 <datalist> component is really exciting to me. You can create a familiar typeahead component without any JavaScript! And with a bonus if you are clever with how you structure the markup it can be backwards compatible as a <select> as well.
<datalist>
<select>
I'd be glad to send a PR for this.
Example https://jpdevries.github.io/datalist/
Note: <datalist> can also be used with <input type="range"> to create "snap points".
<input type="range">
ooooh I love this! Would you like to submit a PR or I could add it
Isn't it neat?! I'll try to wip up a PR.
http://caniuse.com/#feat=datalist
The HTML5
<datalist>
component is really exciting to me. You can create a familiar typeahead component without any JavaScript! And with a bonus if you are clever with how you structure the markup it can be backwards compatible as a<select>
as well.I'd be glad to send a PR for this.
Example https://jpdevries.github.io/datalist/
Note:
<datalist>
can also be used with<input type="range">
to create "snap points".