Answers for "ajax success page reload"

0

jquery success refresh page

location.reload();


 $(document).ajaxStop(function() {
        setInterval(function() {
            location.reload();
        }, 3000);
    });
Posted by: Guest on June-15-2021
2

jquery ajax refresh

function loadlink(){
    $('#links').load('test.php',function () {
         $(this).unwrap();
    });
}

loadlink(); // This will run on page load
setInterval(function(){
    loadlink() // this will run after every 5 seconds
}, 5000);
Posted by: Guest on December-04-2020
1

refresh ajax jquery

function loadlink(){
    $('#links').load('test.php',function () {
         $(this).unwrap();
    });
}

loadlink(); // This will run on page load
setInterval(function(){
    loadlink() // this will run after every 5 seconds
}, 5000);
Posted by: Guest on April-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language