Replacing JavaScript with Just HTML

(htmhell.dev)

125 points | by soheilpro 2 hours ago

16 comments

  • subdavis 1 hour ago
    The details / summary thing absolutely kills me. There’s basically nothing you can’t do with them. Hiding and replacing markers is easy. But every component library just pretends they don’t exist.

    It even saves you the effort of all the aria control and expanded tags: these tags don’t need them.

    • raybb 21 minutes ago
      Do they work well for when you want to preview text? Like show the first 100 characters of a paragraph and then click to expand?
    • crooked-v 10 minutes ago
      You can't actually control the open state properly from markup (the `open` attribute only sets the default state), which is why I haven't bothered with them.
      • subdavis 1 minute ago
        Why have you needed to? You can capture open/close events but its true you cannot set them.

        I can’t think of a use case for this aside from a “expand/collapse all” button (which I can’t recall ever having seen in the wild for an accordion)

    • webstrand 1 hour ago
      Details works even when it's set display:contents too, for even more flexibility. Can't animate from open›close, yet, though. That's pretty much my last frustration with it.
      • shakna 1 hour ago
        I think the CSS support for that has finally landed, though it means targetting a pseudo element instead. Its been a year, so support is probably good enough you don't care if just the animation doesn't happen.

        https://developer.chrome.com/blog/styling-details

  • montroser 12 minutes ago
    Most of this is great, except for the input/datalist bits, which are not sufficiently functional to be used in any real scenario. Users expect these interfaces to be tolerant of misspellings, optional sub text under each option, mobile ux niceties, etc -- and so everyone builds this with js...
    • kmoser 4 minutes ago
      My main beef with datalist is that there's no easy way to show and allow only text (e.g. Beverly Hills), but have the actual value selected be a number (e.g. 90210). In other words there's no analogy to <option value="90210">Beverly Hills</option>.
  • anidsiam 17 minutes ago
    Your blogs have very small amount solution, but the JS use cases are very large. How this little replacement can do more thing? I usually like the idea of being using as lean as possible, if it's can be possible to do more thing just with HTML and CSS that's obviously cool. Is it really possible to replace JS with HTML in near future?

    BTW the toggle solution (expanding content) is good.

  • ronbenton 1 hour ago
    One thing I am quite hopeful for is customizable selects! It's in WHATWG stage 3 right now. I have seen so many horrors with javascript-based custom dropdowns components. https://developer.chrome.com/blog/a-customizable-select
  • overflowy 39 minutes ago
    HTML and JavaScript serve distinct purposes, making better or worse comparisons logically flawed. Complex/interactive web apps requires JavaScript, period. Attempting to build sophisticated apps solely through HTML (looking at you HTMLX) eventually hits a functional ceiling.
    • imbusy111 21 minutes ago
      I assume you mean htmx. It doesn't have to be either/or. You can supplement htmx with Javascript.

      The core idea with htmx is that you transfer hypertext with controls and structure built in, not just a JSON blob that requires additional context to be useful.

      I have just shipped a very useful and interactive app surprisingly quickly for my customer using just htmx with a little Javascript.

    • mcny 23 minutes ago
      It shouldn't have to be this way though. There is no reason html can't do things it needs to do to build complete apps. We could use reasonable defaults to allow a new type of html markup without JavaScript.

      All the http verbs. Decent html input controls What else?

  • prisenco 1 hour ago
    When building out a new app or site, start with the simplest solution like the html-only autofilters first, then add complex behavior later.

    It's good to know these things exist so there are alternatives to reaching for a fat react component as the first step.

    • zdragnar 1 hour ago
      Until your client tells you that it doesn't work in Edge and you find out it's because every browser has its own styling and they are impossible to change enough to get the really long options to show up correctly.

      Then you're stuck with a bugfix's allotment of time to implement an accessible, correctly themed combo box that you should have reached for in the first place, just like what you had to do last week with the native date pickers.

    • willparks 1 hour ago
      It’s great to see practical examples that push us to consider what the platform already offers before adding more layers of complexity.
  • dpedu 25 minutes ago
    I didn't know about <datalist>, but how are you supposed to use it with a non-trivial amount of items in the list? I don't see how this can be a replacement for javascript/XHR based autocomplete.
    • reed1234 23 minutes ago
      > If we can hand-off any JS functionality to native HTML or CSS, then users can download less stuff, and the remaining JS can pay attention to more important tasks that HTML and CSS can't handle (yet).
    • psnehanshu 23 minutes ago
      You can't. It's only supposed to be used for a limited list.
  • smlavine 1 hour ago
    The Pentagram at the top of the page does not load without JS enabled.
    • bitbasher 1 hour ago
      So it's.. fitting, how meta.
  • theandrewbailey 1 hour ago
    > Input with Autofilter Suggestions Dropdown

    It's great until you have a typo in the field, or want to show options that don't start with what you typed in but appear near the end of an option (think Google search's autocomplete). There's no way to filter in Javascript and force it to show certain options with <datalist>. I've resorted to <ol> for search suggestions.

  • suprjami 1 hour ago
    Gimme a dark/light mode switch. CSS is allowed.
    • adzm 1 hour ago
      Use a checkbox, d. Define vars for light mode. Override when checked for dark mode with body:has(#d:checked) and can include the dark mode media query too
    • johnisgood 1 hour ago
      Checkbox and :checked are your friends.
  • only-one1701 1 hour ago
    Something I keep thinking about when I consider the trade-offs between building a site with HTML/CSS wherever possible vs JS is what the actual _experience_ of writing and maintaining HTML/CSS is vs JS. JS gets knocked around a bunch compared to "real" languages (although less so in recent years), but at the end of the day, it's a programming language. You can write a loop in it.

    Writing a web server in C++ is a way to get excellent performance. So why don't most people do it?

  • odie5533 1 hour ago
    The Popover API looks really cool. Could see it for tooltips or lightboxes.
  • econ 18 minutes ago
    I'm so not impressed by the toggle implementation... How nice it could have been.

    Nesting the elements is a truly hideous choice. The summary is part of the details?? I thought they were opposites.

    Should we also put the headings in the <p> from now on?

    Identifying a target should be done by id or by name. That it does use a name because js can't target it without makes it even more stupid.

    We already had labels for form fields. Inventing a completely different method for something very similar is a dumb idea. The old checkbox hack is more flexible and less ugly for some implementations.

    Why force the hidden content to be below or above the toggle? We aren't gaining anything with this.

    What is this nonsense for an element to not just be hidden or displayed but to have some weird 3rd state where only one of its children is shown?

    How should styling it even work for this new state? If I apply a style to the hidden content it must also apply to the link? The text is hidden but the style is visible??? Preposterous!

    Don't try style <details> to avoid unexpected behavior. Try wrapping the hidden content in a new element to make it behave normally.

    What is this ugly arrow? If you find 1000 websites using a toggle I doubt there is one using an ugly arrow like that.

    The default styling gives no clue about it being clickable?

    The pointer (awkwardly called the cursor) choice is the text selection?????

    Blue underlined "more" is what everyone does and everyone is used to. The cursor should be pointer. (This is css speak for "the pointer should be a hand")

    The number of js toggles you can find online where the button lives inside the hidden text is guaranteed to be zero. Forget about drop in replacement, you will have to reinvent your css.

    Maybe I'm dense but I also want my url to reflect the state of the page. I would have been impressed if that was supported. Personally I use actual links and disable default action in the listener if js is enabled/working or modify the state on the server if js isn't available/working.

    It would have been great if the toggle action was implemented as a simple attribute something like toggle="element name" so that anything can be clickable and anything can be toggleable. Have a "closed" as well as an "open" attribute for the target.

    Doesn't seem very hard. An open/closed attribute would be useful for other things too. Using display:none is terrible as display: is used for many things.

  • superkuh 1 hour ago
    Some of these new HTML features don't fully work in my "ancient" browser. But all of them partially work (ie opening the accordion element doesn't close others but it still opens and closes) and they still remain functional elements I can read and interact with. This puts them far ahead of any javascript implementation which almost universally fail to nothing.
    • ravenstine 1 hour ago
      What "ancient" browser are you using?
      • vpShane 47 minutes ago
        Probably something 300 CVEs ago.
  • FormerlyEL 36 minutes ago
    [dead]
  • cantalopes 51 minutes ago
    The problem is that it's difficukt to style or animate those things. Unless you're builsing something for dun or technical where it's not important it's fine but i doubt any real world commercial project would be satisfied with just this