We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Html forms submit method is not working as expectation
Should redirect the current page to the url which is setting at the action of attribute.
Nothing happening after trigger the submit method and no error appears in console.log
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <form name="online" id="form" action="https://www.example.com" method="post" enctype="application/x-www-form-urlencoded" accept-charset="UTF-8"> <input type="text" name="RETURN_URL" value="example.com/callback"> <p class="edgeBox_Outer Adjust04"><input type="submit" id="submit" style="background: none; border: none; color: red; font-size: 90%;font-weight: bold; width:100%;" value ="Submit"> </p> </form> </body> </html>
Mac OS 13.3.1 iPhone 14 Pro - iOS 16.2 Simulator with Xcode 14.2
[email protected], [email protected], [email protected] [email protected] [email protected] Xcode 14.2
The text was updated successfully, but these errors were encountered:
An HTML form is probably not what you want to use in a Cordova application because:
If you are posting to an external URL, that URL needs to be trusted in your allow list.
If you're integrating with an external server that uses forms, you can still use the JS Form API to submit the form without leaving the page.
Sorry, something went wrong.
No branches or pull requests
Bug Report
Problem
Html forms submit method is not working as expectation
What is expected to happen?
Should redirect the current page to the url which is setting at the action of attribute.
What does actually happen?
Nothing happening after trigger the submit method and no error appears in console.log
Information
Command or Code
Environment, Platform, Device
Mac OS 13.3.1
iPhone 14 Pro - iOS 16.2 Simulator with Xcode 14.2
Version information
[email protected],
[email protected],
[email protected]
[email protected]
[email protected]
Xcode 14.2
Checklist
The text was updated successfully, but these errors were encountered: