How can I set the focus on a Html element in Elm? I tried to set the autofocus attribute on the element and it only sets the focus on the page load.
With elm/html 0.19 you can set the Html.Attrbutes autofocus to True
True
input [ onInput Code, autofocus True ] []