I am trying to use the Asual Address plug in so that my back button works on ajax calls. I am so confused on how this work and every tutorial i find says to impliment it different. I haven't been able to get any of them to work.
I have a simple ajax page. It simply calls in an image:
Javascript:
<script type="text/javascript">
$("a").live("click", function(event) {
url = $(this).attr("href");
$.address.value($(this).attr('href'));
event.preventDefault();
$.ajax({
type: "get",
url: "/"+url+".php",
data: "",
dataType: "html",
success: function(html){
jQuery('#Right_Content').hide().html(html).fadeIn(1000);
},
})
});
</script>
My Html Looks like this:
<body>
<a href="push1" onclick="return false;" >Image 1</a>
<a href="push2" onclick="return false;">Image 2</a>
<div id="Right_Content"></div>
</body>
Using the code above, when i click a link it makes the ajax call, loads the pics and changes the url. This is working fine. My problem is the back button. When i click the back button the url changes to the previous url but the content on the page stays the same. I think it has something to do with "popstate" and adding this to my js. I just don't know how to it.
Can someone please explain to me how popstate works and how i add it to my above code so that my back button works. Thank you.
FULL PAGE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="/JS_Functions/jquery-ui-1.8.17.custom/js/jquery-1.7.1.min.js"></script>
<script src="/JS_Functions/jquery-ui-1.8.17.custom/js/jquery-ui-1.8.17.custom.min.js"></script>
<script src="JS_Functions/jquery.address-1.4/jquery.address-1.4.min.js"></script>
<script type="text/javascript">
$.address.init(function(event) {
// All elements with the "history" class will be "addressed". When they get clicked
// the href will get used as the new #part of the URL
$('a').address();
$('a').live("click", function(){
var href = $(this).attr( "href" );
$.ajax({
type: "get",
url: "/"+href+".php",
data: "",
dataType: "html",
success: function(html){
jQuery('#Right_Content').hide().html(html).fadeIn(1000);
},
})
})
}).change(function(event) {
//Every time the url part changes this will be called.
// As an example here I determine the # part of the URL and default to 'home'
var hash = event.path.substring(1);
hash = hash? hash.toLowerCase(): 'push1';
//.. do the stuff here that you need to do when hash has a certain value
});
</script>
</head>
<body>
<a href="push1" >Image 1</a>
<a href="push2" >Image 2</a>
<div id="Right_Content"></div>
</body>
</html>