I want to change the text of the back button on the Safari Mobile keyboard when my input element is focused. I know you can do this:
<form action="somewebsite.com"> <input id='SearchTextBox' type="search"/> <input id='SearchButton' type="button" value="Search" /> </form>
But I do not want the form tag, because the search is ajaxian (I do not want to reload the page).
Does anyone know if this is possible?
source share