HTML tip: the “enterkeyhint” attribute allows us to change the label of the "Enter" key of a virtual keyboard and it’s supported by all browsers.
Example usage: <input enterkeyhint=“search” />
As @Sirs0ri pointed we can only have a predefined set of values; full list here https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/enterkeyhint#values
#css #javascript #development
enterkeyhint - HTML: HyperText Markup Language | MDN

The enterkeyhint global attribute is an enumerated attribute defining what action label (or icon) to present for the enter key on virtual keyboards.

MDN Web Docs
@daniel_js_craft @Sirs0ri This is good to know!