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 almost. You can't use any value as label, only a couple of predefined ones, see here: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/enterkeyhint#values

Your "👍 OK" example would be ignored by the browser, unfortunately

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
@Sirs0ri thanks for the tip, Maxi! You are right. This is what you get when you test the default documentation example but try to be cool when you write the post :)