I've noticed navigating in websites like Dell or Google, that typing in their search text box with iPhone, in the keyboard appears a blue button 'Search' instead of the standard 'Go' button that appears on any normal form.
What should you do to display the search button?
You can find a specific word or phrase on a page. , then tap Find on Page. Enter the word or phrase in the search field.
Choose a search engineGo to Settings > Safari > Search Engine.
Navigate to the page that you want to search. Tap the Share icon (the square with an arrow pointing out) at the bottom of the screen. Scroll past the Share options to the Action menu and select Find on Page. Type the word or phrase you're looking for in the search field and tap Search.
having type="search" is usually all you need to make software Search keyboard appear however in iOS8 it is mandatory to have a wrapping form with action attribute.
So the following code would have a software keyboard with “Return” button
<form> <input type="search" /> </form>
But this code should have blue “Search” button instead
<form action="."> <input type="search" /> </form>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With