lundi 28 octobre 2019

Javascript jQuery Error Overload Ajax Request?

Im have two buttons. One Button refreshes the table (html table) with a ajax php request. And there is another button to refresh it every 10 seconds. If I try to access the document it throw a lot of errors that I don't know about how to solve the problem.

My Javascript Code is here:

<script>
$(document).ready(function(){
    $("#reloadLoginActivities").click(function(){
        $("#loginActivities").load("https://www.prodigy- 
    official.de/resources/php/website_utilities.php", {
            function: "loadTenLatestLoginActivities"
        });
    });


$("#liveUpdateLoginActivities").click(setInterval(function(){
        $("#loginActivities").load("https://www.prodigy-official.de/resources/php/website_utilities.php", {
            function: "loadTenLatestLoginActivities2"

        },10000);

    }));

});
 </script>

I get a lot of errors: https://prnt.sc/pp33s1

My jQuery File is here: https://www.prodigy-official.de/resources/js/jquery-3.3.1.min.js




Aucun commentaire:

Enregistrer un commentaire