Phonegap send external browser

I had a phone problem (version 2.5.0) in order to open the submission form to an external web browser on Android and iPhone. I want to send this form:

<html> <body> <form method="POST" target="_blank" action="https://externalDomain.com"> <input type="text" name="username"/> <input type="text" name="password/> <input type="submit" value="accept"/> </form> </body> </html> 

Thus, the execution of this script takes place in a file stored on the device, it allows you to say “index.html”, and I want the application to open in the browser because I need the user to fill out the payment processor form on “externalDomian.com”.

Any help would be greatly appreciated.

+4
source share

Source: https://habr.com/ru/post/1469050/


All Articles