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)
function showNewContent() {
$('#loading').hide();
$('#content').show();
contentLoad();
}
return false;
});
}
How would I be able to integrate back and forward button functionality into mobile browsers? Hope this is possible.
Thanks in advance.