Answers for "jquery recharger la page"

0

jquery recharger la page

// with jquery selector
$(document).ready(function() {
    $("button").click(function() {
        location.reload(true);
    });
});

// with simple function
function reload() {
    location.reload(true);
}
Posted by: Guest on March-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language