$(function(){
$('div').live('pagehide', function (event, ui) {
var $this = $(this);
if ($this.attr('ID') !== undefined && $this.attr('data-cache') !== undefined && $this.attr('data-cache') == "never") {
var page = $this.attr('ID');
$(document.getElementById(page)).remove();
}
});
});
OR
$(document).bind("mobileinit", function () {
$.mobile.hashListeningEnabled = false;
$.mobile.ajaxEnabled = false;
});
OR
$(document).ready(function() {
$('form, a').removeAttr('data-ajax');
$('form, a').attr('data-ajax', false);
});
Good luck!
No comments:
Post a Comment