My main page look like this:
<body>
<div id="MainPage" data-role="page">
<script>
$("#MainPage").live("pageinit", function () { ... });
</script>
...//I have a map and when I walk to the next page I delete the map.
</div>
</body>
My next page look like this:
<body>
<div id="NextPage" data-role="page">
<script>
$("#NextPage").live("pageinit", function () {... });
</script>
<a data-res="btnBack" data-role="button" data-theme="b" href="MainPage.html"
data-icon="back" data-iconpos="left" onclick="document.MainPage.reload(true);">
</a>
...//I have a map and when I walk to the Main page I delete the map.
</div>
</body>
Because I delete the maps I have to reload the main page and it does not work that way, the main page is not recognized as a page and therefore has no reload function.
Can anyone help?

