Skip to content

Instantly share code, notes, and snippets.

@stenehall
Created April 16, 2013 07:16
Show Gist options
  • Save stenehall/5394004 to your computer and use it in GitHub Desktop.
Save stenehall/5394004 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test</title>
<script>
if (window.location.search == '?phonegap')
{
document.getElementsByTagName('html')[0].className = 'phone-gap'
}
</script>
<style>
html {
background: #0f0; // Green
}
.phone-gap {
background: #f00; // Red
}
</style>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment