Skip to content Skip to sidebar Skip to footer

Reload A Page Manually

How can I reload a page using javascript?

Solution 1:

location.reload() Method: Reloads the current document

Source

Solution 2:

You could use javascript:

window.location = '';

Post a Comment for "Reload A Page Manually"