Pomodoro Clock - how to refresh page

I’m having a heck of a time getting my “reset” button to refresh the page once the clock is done counting down. My code to refresh the page is on line 57:
$(’#reset’).click(function() {
location.reload(true);
});

It reloads into a blank screen. Can someone point me in the right direction for how to get it to work? It works on other codepen posts I’ve done.

Thanks very much for the help!

Yeah I didn’t explain it well. My reset button is hidden and appears when both clocks hit zero. I want the reset button to refresh the browser.

Unfortunately this didn’t work. Maybe I’m doing it wrong:

$(’#reset’).click(function() {
window.location.reload();
});

Thanks for the feedback!