

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to programmatically empty browser cache with HTML?
You can tell your browser not to cache your page by using the following meta tags −
<metahttp-equiv = 'cache-control' content = 'no-cache'> <metahttp-equiv = 'expires' content = '0'> <metahttp-equiv = 'pragma' content = 'no-cache'>
In addition, try the following: Append a parameter/string to the filename in the script tag. Change it when the file changes.
<scriptsrc = "newfile.js?version = 1.0.0"></script>
Then the next time you update the file, just update the version i.e.
<scriptsrc = "newfile.js?version = 1.0.1"></script>
- Related Questions & Answers
- HTML5 applicationCache vs Browser Cache
- Ember.js browser support with HTML
- How can I make a browser to browser (peer to peer) connection in HTML?
- Programmatically opening URLs in a web browser in Python (tkinter)
- How to start selenium browser with proxy?
- Using Redis Cache with Spring Boot
- How to launch Edge browser with Selenium Webdriver?
- How to create empty circles with CSS?
- Cache Management
- Open a file browser with default directory in JavaScript and HTML?
- How to take pictures with camera on Android Programmatically?
- How to cache query results in Oracle?
- How to create a browser window example with CSS?
- Several distinct caches for a single URL in HTML Cache?
- How to quit application programmatically?
Advertisements