Apurba Mondal
Apurba Mondal

Reputation: 63

Close the open browser by Javascript in PhoneGap App

Currently we are working with PhoneGap app. In app we have open 3rd party link for information.

Like Click

Now by JavaScript looking to close this link and back to app.

Upvotes: 0

Views: 37

Answers (1)

Víctor
Víctor

Reputation: 3039

If you are opening an external browser, there is no way that you can inject javascript code into it.

You should check inAppBrowser, so you can open the link inside your application, and you can close it via javascript when you want, and make your logic.

Happy coding!

Upvotes: 1

Related Questions