HTML | DOM Location reload() Method
The location reload() method in HTML DOM is used to reload the current document. This method refreshes the current documents. It is similar to the refresh button in the browser.
Syntax:
location.reload( forceGet )
Parameters: This method contains single parameter forceGet which is optional. This parameter contains boolean value which are listed below:
- True: Reloads the current page from the server.
- False: Reloads the current from the cache.
Return Value: It does not return any value.
Example:
html
<!DOCTYPE html> < html > < head > < title > HTML DOM Location reload() Method </ title > <!--script to reload current page--> < script > function locationreload() { location.reload(); } </ script > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 > HTML DOM Location reload() Method </ h2 > < p > Click on the button to reload the document </ p > <!-- script call here --> < button onclick = "locationreload()"> Reload page </ button > </ body > </ html > |
Output:
Before click on the button:
After click on the button: The document will reload.
Supported Browsers: The browser supported by DOM Location reload() Method are listed below:
- Google Chrome 1
- Edge 12
- Internet Explorer 5.5
- Firefox 1
- Opera 3
- Safari 1
Please Login to comment...