Click here to Skip to main content
15,891,942 members

Comments by toebens (Top 1 by date)

toebens 15-Aug-11 6:57am View    
Deleted
you request the url via http GET method. if you use the POST method then the result should never been cached. (see http standard for details - i think it is described somewhere in the RFC)

when using GET there is no other way around to get a fresh result: you have to append some (new) parameter with a value that hasn't been requested before like a timestamp. this way the cache:false jquery option is working apperently, too. (wasn't aware of the cache option before)