Possible Duplicate:
phonegap: open an external link in Safari not the app's UIWebView
I have made an HTML5 application for my Ipad. this is made native with phonegap. On my application, I have som external links to web pages. However when I open these links, the external web-page is opened in my application, and since my Ipad doesn't have a 'back-button', there is no way to go back to my application. Even when I close the application, and then open it again, the external web-page is opened.
I have tried to solve the problem with a childbrowser, but I get the same problem with that. Here is the code I used:
openChildBrowser('http://en.wikipedia.org/wiki/Lapis_lazuli',{ showLocationBar: true });">text here</a>
and:
<a onclick= "window.plugins.childBrowser.showWebPage('http://en.wikipedia.org/wiki/Lapis_lazuli',{showLocationBar: true});">text here</a>
and I have ofcourse tried regular a href. Do anyone have a solution to my problem? Thanks for your time :)