JQuery Recharger la Page

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

// with simple function
function reload() {
    location.reload(true);
}
Erwan H Dev