quote:
Originally posted by roflmao456
how do i clear the cache of http web requests?
it always displays the same content that i'm trying to download
You could just add a random number onto the end of the URL, so it's fooled into thinking it's loading a different page to the cached one. e.g:
code:
var URL = "http://example.com/?" + Math.random();