Features and usability: questions of curiosity and suggestions #540
johnperry-math
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've noticed a few things about some keyboard interaction and text inputs that prompt questions.
Mere curiosity
textarea
for single-line text input, rather than just aninput
withtype=text
?Enhanced features
oninput
(I think?) returned more than just thevalue
. For backward compatibility, though, I'm not sure this is feasible.request_focus()
method that wraps the.focus()
method for HTML elements would be very convenient. Consider a document with multipleTextInput
s; whenonchange
occurs in one, the handler could automatically focus on the next one, rather than forcing the user to do that somehow.Slider
widget is focused, it makes sense to have it respond toonkeydown
; I have anExtendedSlider
that uses this to:Beta Was this translation helpful? Give feedback.
All reactions