Ajax back button jquery - Need full example step by step.
- by Latios88
Hi.
I need help supporting back button with jquery ajax.load method.
I have tried a couple of plugins but i cant get any of them to work.
I am loading my content like this:
$('.pagination a').click(function(){
var url = $(this).attr('href');
ajaxLoad(url,null,'.container');
return false;
});
Note: ajaxLoad function executes the jquery load method.
Many thanks for your help.