When I navigate to a second page and try to go back using the default back button that every android device has, it seems as though the first time I tap it, nothing happens. I have to tap it a second time. Anyone have any idea why this happens?
I'm not sure what more information I need to provide. If you need more info please request specifically what you need and I will try to edit the question.
Edit: my main activity extends DroidGap and only has the one method
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
}
I think I'm narrowing down on the problem. On the second page, there are a list of anchor tags that perform a css animation when clicked.
This jsfiddle isn't doing the animation for whatever reason but here is the relevant markup, css and javascript