Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

113
Views
Problems loading a script for infinate scroll

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>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

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();
    }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!