Im using jQuery mobile to make a small project. You can say its a signup system for a weekly event, and then the event is reset each week (through some scripts running on a server).
I have had problems with IE before, since it has the most wack cashing properties ever, and therefore won’t update page content when ajax requests are using GET. I then turned all my ajax into POST and it worked. Now, how do i do this in jQuery Mobile?
Everythings works great in firefox, but IE just won’t update my content since the page are loaded through the ajax GET command. I tried to pass this into my custom js file to get it away, but it still dosen’t work 🙁
$(document).ready(function(){
$(document).bind("mobileinit", function(){
$.extend( $.mobile , {
ajaxLinksEnabled : false
});
});
});
Anyone with an idea on what to do :)?
Try with:
called on page initialization (befor doing the real request).