pro tip: if u wanna js refresh the page without cache, use:
```js
window.location.href = window.location.href + '?nocache=' + new Date().getTime();
```
works every time for me. `location.reload()` can be flaky depending on the browser.
```js
window.location.href = window.location.href + '?nocache=' + new Date().getTime();
```
works every time for me. `location.reload()` can be flaky depending on the browser.
