Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

118
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda