Browser support for window.location.reload(true)

browser-support, javascript

Solution

`location.reload()` takes no arguments in the specification, so do not rely on it. It is implemented in some browsers though, including Mozilla Firefox.

Problem

`window.location.reload()` is supported in all browsers, according to w3schools But what's with `window.location.reload(true)` which reloads the page without cache? How well is it supported?

Original source

Related problems