1

I'm using jQuery Mobile. I'm using JQM and javascript to change the page once I save data. I want to change pages on successfully saving data to Parse. Everything works fine in all browser and with Win7 / IE9. Works everywhere EXCEPT Win8/IE10. With Win8/IE10, the the data gets saved to Parse.com, but the page change never happens. the URL address changes, but the page displayed never changes. here's my code:

      success: function(object) {
        $(".success").show();
        alert (" New Info Saved  ");
        //window.location.href = "#showFltInfo";   this works, seems to reload whole page though
                    window.location.hash = "#showFltInfo"; // this does same as above but doesn't seem to reload page, ie. it's faster
           //   this not work at all    $.mobile.changePage ($("#showFltInfo"));            
4

0 回答 0