How can I make a custom select component but without using HTML tag? I have an input field and when searched it fetches data from API. The data are shown in separate div. I also tried datalist but no luck.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (4)
Take a look on github, or at this repo specifically. That library explains how it creates custom dropdowns.
My gut feeling is that you do something where the select is still there but hidden. So the form receives information via the select element, but the GUI is created by something else.
Umm interesting. I'll look into that. Thank you
Sounds like you need something like Select2 (select2.org)? If you'd rather implement it yourself, that should give you an idea of how to start.
Sure. I'll give it a try. :)