Skip to content Skip to sidebar Skip to footer

Page Redirection Happening When Go Button Is Pressed On A Textbox (jquery/cordova)

I am working on a cordova app and using jquery mobile with cordova. I have created a text field in the html page in the following manner:

Solution 1:

It sounds like the go button is performing a submit action. What are you expecting to happen when the person hits go?

Can you track what's happening by debugging your code?

Solution 2:

Fixed the issue by adding onsubmit='return false;' to the form tag in the following manner:

<formonsubmit='return false;'></form>

Post a Comment for "Page Redirection Happening When Go Button Is Pressed On A Textbox (jquery/cordova)"