Invis1ble
я привел полный js код
$(function($){
$("#pp_content").on('click', 'a.nav', function (e) {
e && e.preventDefault();
$('a.nav').attr('onclick','return false;').click(function(){
var href = $(this).attr('href');
history.pushState(null, null, href);
var location = document.location.pathname;
var get = document.location.href;
url = 'http://localhost/switch.php';
query ='location='+location+'&get='+get;
$.ajax({
url: url,
type: "GET",
data: query,
success: function(html){
$("#pp_content").html(html);
}
});
});
});
});