i'm trying to use balupton's history.js and found also this: https://gist.github.com/854622
But i don't get it to work like my hash code did:
$('#menu li a').click(function(event){
event.preventDefault();
var toLoad = $(this).attr('href') + ' #content';
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4);
if ($("#main").css('top') == '100px') {
$("#content").transition({left:'1200px'}, 900, 'out', function(){
$("#load").load(toLoad, null, function(){
$("#content").transition({left:'0px'}, 900, 'out');
var contentHeight = $("#content").outerHeight(true)+258+$("#footer").outerHeight(true);
if(contentHeight<parseInt($("body").css("min-height"))){
contentHeight = "100%";
}
$("#page").stop(true).animate({height:contentHeight}, 1000, "easeOutCubic");
});
});
}else{
I load my "#content div" into the "#load div" and can't figure out how to do it with history.js. It changes the content of the whole body...