HTML Can Do That
chrisburnell.com
HTML Can Do That
1–10 of 249 posts
Re: HTML Can Do That
#2Re: HTML Can Do That
#3Re: HTML Can Do That
#4Re: HTML Can Do That
#5Hopefully these and others modern HTML features gain adoption, along with realizing perhaps a Single Page Application isn't necessary in most instances.
I don't often have to write frontend code, but when I do, there is very little in terms of interactivity you cannot do with HTML these days, worst case a little sprinkle of something like HTMX.
Re: HTML Can Do That
#6Re: HTML Can Do That
#7Re: HTML Can Do That
#8>Just a heads up but datalist is not really a great solution if you need a strong contract. The user can still type whatever they want into the field and there is no fuzzy filtering or typo mitigation. Once you add those requirements, a library that gives you a more fully featured combobox is likely going to make a lot of sense in your project.
It is true! HTML can do a lot of cool stuff, it might get you 100% of the way depending on what you're doing. But if you have a lot of forms where users pick from a value set, and want to enforce no other strings and get a good search experience, datalist does not get you there.
Re: HTML Can Do That
#9The “hidden until found” feature surprised me. What’s the use case for something like that?
So you could use it for additional notes, things like "view pricing terms" or "show exclusions" on product listings — stuff people need to read only when they need to read it — without it being hidden from them if they search for it.
Re: HTML Can Do That
#10Yeah, I'm a great fan of both HTML and CSS "can do that". I find more useful things on the CSS side like :has, keyframes and container queries. Why duplicate code when you have it for free :)