Baseline Widely available
The enterKeyHint
property is an enumerated property defining what action label (or icon) to present for the enter key on virtual keyboards. It reflects the enterkeyhint
HTML global attribute and is an enumerated property, only accepting the following values as a string:
'enter'
typically indicating inserting a new line.'done'
typically meaning there is nothing more to input and the input method editor (IME) will be closed.'go'
typically meaning to take the user to the target of the text they typed.'next'
typically taking the user to the next field that will accept text.'previous'
typically taking the user to the previous field that will accept text.'search'
typically taking the user to the results of searching for the text they have typed.'send'
typically delivering the text to its target.If no enterKeyHint
value has been specified or if it was set to a different value than the allowed ones, it will return an empty string.
Give a virtual keyboard a hint how to label the enter key (might render as Send and Search, depending on the OS or the user's language).
const send = document.getElementById("sendInput");
const search = document.getElementById("searchInput");
send.enterKeyHint = "send";
search.enterKeyHint = "search";
Specifications Browser compatibility See also
enterkeyhint
HTML global attributeRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3