I've read that the solution to display 'Search' instead of 'return' in mobile is to have a form wrapper around an input element and set the type to 'search'. However, this doesn't work for textareas.
ie:
<html>
<body>
<p>
<form>
<input name='search' type='search' placeholder="Input type is search" />
</form>
</body>
</html>
What is the solution to get this to work in a <textarea />
?