The date for this report is August 19, 2026. On that date, a web demonstration by developer Chris Burnell drew attention to the growing range of interactive functions available through HTML without custom JavaScript.
Titled “HTML Can Do That,” the page assembles examples of browser-native capabilities that can replace scripts for some common interface tasks. Its central argument is not that JavaScript has become unnecessary, but that modern HTML now covers parts of the work for which developers have traditionally reached for scripting libraries or bespoke code. [Source 17179]
Among the examples is the `popover` attribute, which allows controls to show or hide content while the browser handles behaviors such as light dismissal, closing with the Escape key and placement in the top layer. The page also demonstrates the dedicated `dialog` element for modal interfaces and notes that dialogs can still be controlled programmatically through JavaScript when an application requires it. [Source 17179]
Another example uses multiple `details` elements with a shared `name` attribute to create an exclusive accordion. Opening one section automatically closes another in the same group. Burnell also shows separate HTML buttons controlling a single popover without scripting and discusses newer command-related features intended to connect controls with interface actions. The page says only a limited set of commands—including opening, closing and requesting the closure of modal dialogs, as well as showing, hiding and toggling popovers—had reached stable browsers. [Source 17179]
The demonstration extends beyond overlays. It presents native image lazy loading, which can delay an image request until the content approaches the viewport, and the `hidden="until-found"` mechanism, which lets a browser reveal concealed content when navigating to a matching fragment or finding text. Built-in form and status elements covered on the page include color, date and range inputs, along with `meter` and `progress`. A `datalist` example illustrates native autocomplete suggestions. [Source 17179]
Burnell accompanies the demonstrations with substantial qualifications. An update dated August 20, 2026, says the page was initially created in one hour during HTML Day 2026 and was later revised to make limitations more explicit. The author warns that some browser implementations are incomplete, inconsistent or unable to meet accessibility needs adequately. [Source 17179]
Those cautions apply particularly to form controls, whose appearance and accessibility behavior can vary between browsers, and to `datalist`, whose support across input types is described as uneven. The page also says `hidden="until-found"` works better with a browser’s default search than with some screen-reader search implementations. [Source 17179]
The collection therefore functions as both a showcase and a warning: standards-based HTML can deliver more interaction with less scripting, but developers still need to test browser compatibility, keyboard behavior and assistive-technology support before relying on newer features in production.


