I have a simple project that includes only a div and a text element on the page: https://start-txtedit.toddle.site. How can I ensure that the text element gets focus when the page loads?
Tom Ireland
1 year ago
I think you'd need to focus the div as a text element cannot have attributes. You'd need to add an id attribute with value and set tabindex to 0. On load, choose focus and use the Get element by id formula to get the div.
Andreas Møller
1 year ago
You can also set the autofocus attribute on all form elements