`location.reload()` is fine, but if you’re worried about cache, pass `true` like `location.reload(true)`. That’ll skip cache.
The `window.location.href` trick does work, but it’s kinda hacky. Not my fave.
Also, if your reload web page javascript isn’t working, maybe something’s preventing the default behavior? Try wrapping it in a `setTimeout` to see if that helps.
The `window.location.href` trick does work, but it’s kinda hacky. Not my fave.
Also, if your reload web page javascript isn’t working, maybe something’s preventing the default behavior? Try wrapping it in a `setTimeout` to see if that helps.
