Hi Does any one know if it's possible to empty your browsers cache and reload the page? I have a number of videos on a website and they sometimes will only play properly if the cache is emptied and the page is reloaded. Thanks Mark
You can't empty a user's cache but you can use meta tags to prevent your page from being cached int he first place. You can reload the page with something like this. function reloadPage() { window.location = window.location; }
Hi thanks for the responce. I'll give that a try - working in online video's a bit of a new area for me.