Empty cache button/refresh

Discussion in 'Programming' started by mint suite, Nov 1, 2007.

  1. #1
    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:confused:
     
    mint suite, Nov 1, 2007 IP
  2. justinbezanson

    justinbezanson Peon

    Messages:
    160
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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;
    }
     
    justinbezanson, Nov 1, 2007 IP
  3. mint suite

    mint suite Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Hi
    thanks for the responce.

    I'll give that a try - working in online video's a bit of a new area for me.
     
    mint suite, Nov 1, 2007 IP