Add a random query string parameter onto the url of the .load() call (see the code for the AutoComplete plugin for an example)
On Jul 23, 9:37 am, LexHair <jdpugl...@hotmail.com> wrote: > I have a table which has an image, an icon and some text in each cell. > I can click an icon in the table cell firing a $.get which delinks > (deletes) the image from the server. The table is refreshed with a load > () call in the callback function. I use the load() call since I'm only > interested in loading the table, not the entire page. > > Everything works perfectly in all browsers except IE8. It seems IE8 > keeps the original table in its cache and when I attempt to refresh it > with the load() call, IE8 pulls it from the cache. The file which has > been delinked from the server magically remains in the cached version > of the table. > > How can I force IE8 to not use the cache on a load() call? > > Thanks in advance.