Current Directory: /home/u930863517/domains/limraevents.com/public_html/js
Viewing File: /home/u930863517/domains/limraevents.com/public_html/js/gallery.js
$(document).ready(function () {
var limit = 8; //The number of records to display per request
var start = 0; //The starting pointer of the data
var action = 'inactive'; //Check if current action is going on or not. If not then inactive otherwise active
function load_country_data(limit, start) {
$.ajax({
url: "./php/gallery.php",
method: "POST",
data: { limit: limit, start: start },
cache: false,
success: function (data) {
console.log(data);
$('#photo-grid').append(data);
if (data == '') {
$('#load_data_message').html("");
action = 'active';
}
else {
$('#load_data_message').html("<button type='button' class='btn btn-warning'>Please Wait....</>");
action = 'inactive';
}
},
error: function () {
console.log("some error on server side");
}
});
}
if (action == 'inactive') {
action = 'active';
load_country_data(limit, start);
}
$(window).scroll(function () {
if ($(window).scrollTop() + $(window).height() > $("#photo-grid").height() && action == 'inactive') {
action = 'active';
start = start + limit;
setTimeout(function () {
load_country_data(limit, start);
}, 1000);
}
});
});