I have ajax calls made in jquery function which i call with onClick options placed on divs. example:
<div class='basic' onClick='example( <?php echo numberIwant ?> )'> example </div>
and the functions than looks like this:
function example(ID){
$.ajax({
type: "POST",
url: "example.php",
data: "ID="+ID, success: function(msg){$("#main").html(msg);}
});
}
Now I want to make browser back button to work, to open the previous page(ajax content). I googled and tried multiple scrips like ajaxify and history.js and so on but I just cannot get it working.
I don't know if I either don't know how to use ajaxify properly or if it just doesent work with this kind of method..
Can anyone help me?