3

How can I reload a page using javascript?

2 Answers2

2

location.reload() Method: Reloads the current document

Source

JoshHetland
  • 1,273
  • 1
  • 12
  • 22
1

You could use javascript:

window.location = '';
MDEV
  • 10,730
  • 2
  • 33
  • 49