It happens most of the time that if you are using ifinitescroll js than your JavaScript will work for the first page but for other pages which will reload using infinite scroll, your JavaScript sucks at that.
So, you can use this way for resolving and making the JavaScript work with your infinite scroll function.
JavaScript Solution=>
$(document).ready(function() {
$(“#feeds_div”).infinitescroll({
navSelector: “nav.pagination”,
nextSelector: “nav.pagination a[rel=next]”,
itemSelector: “#feeds_div .feed_obj”
},
function(){
alert(1);
//Your code
}
);
});