I am using jquery mobile and am finding the when i redirect users to new forms the urls are not updated correctly. I recognize that there is some ajax operations going on however, the ulrs are still not being updated when i disable ajax form submits and/or links.
The following js is placed above the link to the mobile-1.0b3.min.js
It is almost like the following is not making any difference.
<script type="text/javascript">
//http://jquerymobile.com/demos/1.0a3/#docs/api/globalconfig.html
$(document).bind("mobileinit", function () {
//apply overrides here
$.mobile.ajaxLinksEnabled = false;
$.mobile.ajaxFormsEnabled = false;
//$.mobile.defaultTransition = false;
//$.mobile.loadingMessage = "loading3";
//$.mobile.pushStateEnabled = true;
});
</script>
I have found that only if i disable ajax completely do the urls stay current to the page that the user is on.i.e.
$.mobile.ajaxEnabled = false;