Skip to content

Instantly share code, notes, and snippets.

@40
Created July 19, 2012 00:16
Show Gist options
  • Select an option

  • Save 40/3139884 to your computer and use it in GitHub Desktop.

Select an option

Save 40/3139884 to your computer and use it in GitHub Desktop.
BlackBerry WebWorks Wifi/Network Conn Check via HTML5
// Please add blackberry.system and blackberry.system.event feature IDs to config.xml
if (!blackberry.system.hasDataCoverage()) {
alert("This app requires access to internet for the content to work. Please turn on Wifi and restart this application");
}
else{
alert('Winning');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment