Browsers won't reflect changes made in html file

css, firefox, google-chrome, html, internet-explorer

Solution

You can try out the following

- Clear the cache of the browser.

- Do a clean build of the Webapp

OR

Open the Browser in InCognito or Private Browsing Mode

OR

Try to put a meta tag in your HTML

 <meta http-equiv="pragma" content="no-cache" />

Problem

I am developing a web site and just ran into a very disturbing problem. My code won't refresh in any browser, meaning not just Internet Explorer but also Google Chrome and Firefox. The thing is, in a previous version of the HTML file, I have had a div with a link in it (`<a href="">Send request</a>`). Today, I have changed that link into a paragraph (`<p>Send request<p>`). When I load my page, it still displays the link. When I commented out the paragraph and reloaded the page, there was no link and my paragraph was checked out. I checked the source file in Chrome and yes, the source file is correct. However, the browser still displays a link that doesn't exist, and deleting the browser history didn't help. Any ideas?

Original source