sayfana aşağıdaki kodu kodu ekle. içeriği değişecek kısmı
içine al. menüdeki linklere rel="tab" değerini ver. Bne çok aramıştım umarım diğer arkadaşlarada yardımı dokunur.



<script></script>

<script>
$(function() {
$("a[rel='tab']").click(function(e) {

pageurl = $(this).attr('href');

$.get(pageurl, {rel: "tab"}, function(data) {
$('#paging').html(data);
}

);
if (pageurl != window.location) {
window.history.pushState({path: "dsdds"}, '', pageurl);
}
return false;
});
});


$(window).bind('popstate', function() {
$.ajax({url: location.pathname + '?rel=tab',success: function(data) {
$('#paging').html(data);
window.history.pushState({path: "dsdds"}, '', location.pathname);
}
});
});
</script>

kişi bu mesajı beğendi.