Код: Выделить всё
function fetchTotalLessons() {
var xhr = new XMLHttpRequest();
var params = 'getTotal=' + encodeURIComponent('true');
xhr.open('GET', '../includes/fetchLessonPlans.php?' + params, true);
xhr.onload = function() {
if (xhr.status === 200) {
totalLessons = parseInt(xhr.responseText);
totalPages = Math.ceil(totalLessons / lessonsPerPage);
generatePaginationButtons();
}
};
xhr.send();
}
Подробнее здесь: https://stackoverflow.com/questions/785 ... ntend-code
Мобильная версия