This is supposed to load a PHP file when a certain part of a webpage is loaded. (infinite scroll) Only... It's not working and I'm beating my head against a wall trying to figure out why.
<script>
document.getElementById("loadnext").addEventListerner("onload", loadnextfunction);
function loadnextfunction() {
xhttp.open("GET", "g02.php", false);
xhttp.send();
}
</script>
Your loadnextfunction does not have any code to actually update the page, maybe you just need to do something with the response like so:
document.getElementById("loadnext").addEventListerner("onload", loadnextfunction);
function loadnextfunction() {
var xhttp = new XMLHttpRequest();
xhttp.open("GET", "g02.php", false);
xhttp.onload = function () {
// Request finished. Do processing here.
document.getElementById("id_of_html_element_to_update").innerHTML = xhttp.responseText;
};
xhttp.send();
}