Skip to content Skip to sidebar Skip to footer

Phonegap Android Go Button To Not Submit Form

I'm writing an app with Phonegap and I have a register form that is sent through ajax. It works fine when you hit the register button and execute the formcheck() function. However

Solution 1:

Found it!

1) Add this to the JS section:

$(document).ready(function() {
    $("#YourFormName").submit(function() {
    FormCheck();
    returnfalse;
    });
});

functionFormCheck() {
... validation process here ...
}

2) Make sure to include a Submit button in your form .. ( <input type="submit" )

Hope it'll help others so my 5 hour trying & testing time won't go wasted :)

Solution 2:

Simply ensure your form tag is:

<form type='submit' onsubmit='return false;'></form>

This makes the submit action not do anything.

If you also need to hide the keyboard refer to How can I hide the Android keyboard using JavaScript?. A simple onsubmit='hideKeyboard(); return false;' will take care of this.

Post a Comment for "Phonegap Android Go Button To Not Submit Form"