Hello. I need to refresh the page after one second after a click, how can I help?

$('.link a').click(function(){ location.reload(); }); 

    2 answers 2

     $('.link a').click(function(){ setTimeout(function() {window.location.reload();}, 1000); }); 
    • Thank! the class! - bemulima

    Read about the intervals. SetInterval

    SetTimeout