I would like to reload an using JavaScript. The best way I found until now was set the iframe’s src attribute to itself, but this is
src
for new url
location.assign("http:google.com");
The assign() method loads a new document.
reload
location.reload();
The reload() method is used to reload the current document.