$.ajax ({
method: 'get',
url: 'ajax.php',
cache: true,
data: { mod:mod, id:id, },
success: function (c) {
$('#content').html (c);
},
}).done (function () {
return false;
});