Hello everybody!
I'm currently having problems to bind a function to the pagecreate event.
Here's a part of my code:
- $(document).ready(function() {
- $('#projects').on("pagecreate", function() {
alert("pagecreate triggered");
createProjectlist();
}); - );
However this works fine with Desktop Firefox, iPads Safari, Androids 4.0.4 browser but not with Androids 2.3.5 browser.
I already tried to bind it to the tap or click event of the link wich is clicked to show the #projects page, but this also works everywhere except with Android 2.3.5
Any ideas how to fix this?