I encountered a frustrating issue while working on my website. Despite making changes to the code, the browsers are not reflecting the updates. This problem is occurring in Internet Explorer, Google Chrome, and Firefox.
Initially, I had a div with a link (
<a href="">Send request</a>
) in an older version of the HTML file. However, I replaced that link with a paragraph (<p>Send request<p>
) in the current version.
Upon reloading the page, I noticed that the browser still displayed the link instead of the paragraph. Even after commenting out the paragraph, there was no change. The source file seemed correct when inspected in Chrome, but the browser continued to show the incorrect display. Clearing the browser history did not resolve the issue either.
Could anyone provide a solution to this perplexing situation?