I am developing an Android application that uses a WebView pointed at a jQueryMobile-based site. Normally, disabling the \'Go\' button on the soft keyboard is as simple as a
Here's a more detailed answer that uses the method alluded to by Vikas.
Since the problem is that your form is submitting, you can add an onSubmit attribute to your form element that runs JavaScript to determine if your form should be submitted.
Below is the form that you don't want to submit:
<form name="myForm" onSubmit="return doNothing()">
<!-- Elements included in the form -->
</form>
And include this script that returns false which keeps your form from submitting.
<script>
function doNothing()
{
return false;
}
</script>
Now, when you press Go after entering text into your text input field, the keyboard will simply collapse without submitting the form.
This could also be used to check for errors in your form. See the webpage below: http://www.htmlcodetutorial.com/forms/_FORM_onSubmit.html
You may stop submitting form by putting the onsubmit
event of the form.