Is anyone aware of what variables go into a form to make the iPhones virtual keyboard\'s GO button submit the form vs. not?
I\'ve been trying to narrow down the scen
You can also bind a keypress listener to the element or form. The iphone "Go" button is the same as the enter button on a computer, char 13.
$('someElem').bind("keypress", function(e){
// 'Go' key code is 13
if (e.which === 13) {
console.log("user pressed Go");
// submit your form with explicit JS.
}
});