Skip to content

Instantly share code, notes, and snippets.

@Kevinwlee
Created March 31, 2011 03:27
Show Gist options
  • Save Kevinwlee/895772 to your computer and use it in GitHub Desktop.
Save Kevinwlee/895772 to your computer and use it in GitHub Desktop.
PhoneGap Android Gotcha #1 - no leading underscores
<!-- BAD -->
<script>
$("#main").load("_partial.html");
</script>
<!-- GOOD -->
<script>
$("#main").load("partial.html");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment