Is there any option to remove HTML5 appcache using javascript?
These are available option for removing/disabling appcache:
- Update Manifest file with empty content - existing appcache is available without any resource
- Include dummy url in existing manifest file - It will throw 404 for new appcache. But old appcache is not completely remove from browser engine
- Remove from chrome developer console - If we want to remove manually.
But My requirement is to remove appcache programmatically using javascript based on notification from server. Is there any option to achieve this functionality???