function show()
{
$.ajax({
url: "../new_ajax.php",
cache: false,
dataType: "html",
success: function(html) {
$("#content").html(html);
}
});
}У меня иное
function show()
{
$.ajax({
url: "../new_ajax.php",
cache: false,
dataType: "html",
success: function(html) {
$("#content").html(html);
}
});
}