Im definitely seeing a bug here. To simulate
env:
iPhone 3G
scripts:
<script src="/javascripts/jquery-1.4.4.min.js"></script>
<script src="/jquery.mobile-1.0a2/jquery.mobile-1.0a2.min.js"></script>
<script src="/javascripts/jquery-ui-1.8.7.custom.min.js"></script>
<script src="/javascripts/mobile2.js"></script>
problem:
Simple transition to a new page or back is getting stuck. Only sometimes though - not always :( When the transition is stuck changing the orientation causes the transition to complete - this happens always
I am currently transitioning to a div which already exists in the current HTML i.e no server round trips and no ajax.
This occurs if the transition is triggered by an href to my div or programatically using the following code
$.mobile.changePage("#responses", 'slide', false, true);
$.mobile.updateHash("#responses", true);
Another observation is that this is happening only for one specific div to which Im transitioning - all other transitions are ok. But the main issue Im seeing is the transition/pagechange succeeds if the orientation is changed.
Any advice ? Again responses are much appreciated