PHP
- 58 ответов
- 0 вопросов
51
Вклад в тег
jQuery(function($) {
function reload() {
$.ajax('/path/to/the/script/which/generate/content/page', {
cache: false,
dataType: 'html',
success: function(html) {
$('#content').empty();
$('#content').append(html);
window.setTimeout(reload, 2000);
}
});
}
reload();
});
Content-Type: application/octet-stream
Content-Disposition: attachment; filename=<filename>