$(\"#quoteButton\").on(\"click\", function() { location.reload(); });
I worked on a \'Random Quote Machine\' from Free Code Camp web site via N
This is an alternative to location.reload.
location.reload
The parameter of go is the page index, in this case, 0 is the current page. For instance, go(-2) would go 2 pages back in the history.
go(-2)
$("#quoteButton").on("click", function() { history.go(0); });