Location reload() Method

Location Object Reference Location Object

Example

Reload the current document:

location.reload();

Try it yourself »


Definition and Usage

The reload() method is used to reload the current document.

The reload() method does the same as the reload button in your browser.

By default, the reload() method reloads from the cache, but by you can force the the reload to get the page from server by setting the forceGet parameter to true: location.reload(true).


Browser Support

Method
reload() Yes Yes Yes Yes Yes


Syntax

location.reload(forceGet)

Parameter Values

Parameter Type Description
forceGet Boolean Optional. Specifies the type of reloading:
  • false - Default. Reloads the current page from the cache.
  • true - The current page must be reloaded from the server

Return Value

No return value


Location Object Reference Location Object

Color Picker

colorpicker