Created
April 16, 2013 07:22
-
-
Save anonymous/5394042 to your computer and use it in GitHub Desktop.
Demonstration of the different ways to open a URL using PhoneGap.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<meta name="format-detection" content="telephone=no" /> | |
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> | |
<title>Hello World</title> | |
<script type="text/javascript" src="cordova-2.5.0.js"></script> | |
</head> | |
<body> | |
<a href="#" onclick="var ref = window.open('http://google.com', '_system');">Google (System Browser)</a><br /><br /> | |
<a href="#" onclick="var ref = window.open('http://google.com', '_blank');">Google (InAppBrowser)</a><br /><br /> | |
<a href="#" onclick="var ref = window.open('http://google.com', '_self');">Google (Webview)</a> | |
</body> | |
</html> |
how to open a page on app load ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
look for "file" plugin