Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created August 2, 2013 17:49
Show Gist options
  • Save Boztown/6141869 to your computer and use it in GitHub Desktop.
Save Boztown/6141869 to your computer and use it in GitHub Desktop.
/**
* Determine whether the file loaded from PhoneGap or not
*/
function isPhoneGap() {
return (cordova || PhoneGap || phonegap)
&& /^file:\/{3}[^\/]/i.test(window.location.href)
&& /ios|iphone|ipod|ipad|android/i.test(navigator.userAgent);
}
if ( isPhoneGap() ) {
alert("Running on PhoneGap!");
} else {
alert("Not running on PhoneGap!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment