Skip to main content
Inspiring
June 11, 2018
Answered

Page Reload and Refreshing the Browser

  • June 11, 2018
  • 1 reply
  • 4879 views

I am working on an HTML page using JavaScript CSS etc..

After saving various edits, then I go to the browser and do a refresh to see the changes.

Sometimes I do not see the changes reflected in the browser.

I am not sure if the page really refreshed / reloaded properly. I have tried various things to try to insure that the page is properly refreshed like

- location.reload(true); // this gets from server

- refresh the browser manually

- empty browser cache

... but am am just not sure it always works as expected.

Is there a best way to make sure the page is fully reloaded from the server?

Is there some browser setting to fully disable cache?

[Moved to Dreamweaver forum for better exposure - Moderator]

This topic has been closed for replies.
Correct answer BenPleysier

If you are using Chrome, this has a very sticky cache. The best way is to type the following into the address bar and follow the prompts.

chrome://settings/clearBrowserData

If it is not Chrome that you are using, it may be something in the code that is stopping the browser from freely interpreting it (the code).

1 reply

BenPleysier
Community Expert
BenPleysierCommunity ExpertCorrect answer
Community Expert
June 11, 2018

If you are using Chrome, this has a very sticky cache. The best way is to type the following into the address bar and follow the prompts.

chrome://settings/clearBrowserData

If it is not Chrome that you are using, it may be something in the code that is stopping the browser from freely interpreting it (the code).

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
revdaveAuthor
Inspiring
June 13, 2018

Hi Ben.

Thanks much for the tip... Also I am having better luck now with - location.reload(true) - previously I just had location.reload() - which just gets from cache...

Dave