Skip to content

Instantly share code, notes, and snippets.

@dmitriyzyuzin
Created May 29, 2019 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmitriyzyuzin/ef5b9c4d0b0b41b9b2f69bb796440325 to your computer and use it in GitHub Desktop.
Save dmitriyzyuzin/ef5b9c4d0b0b41b9b2f69bb796440325 to your computer and use it in GitHub Desktop.
Iphone change submit button text from "Go" to "Search"

Change Iphone submit button text from "Go" to "Search"

You need create form and at least one input element. Required:

  1. input with type="search"
  2. define attribute "action" at form
<form action="">
	<input type="search" name="q" aria-label="Search" />
</form>

See demo (second form) here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment