JQuery Ajax Load Mobile Browser Back Functionality
- by Brad
Currently working on a mobile site using the .load() technique:
$.ajaxSetup ({cache: false});
contentLoad();
function contentLoad() {
$('a.inline').click(function(){
var toLoad = $(this).attr('href')+' #content';
$('#loading').show();
$('#content').load(toLoad,'',showNewContent)
…