how to disable caching of ajax response in JQuery?
by Ramya[ Edit ] 2013-01-16 14:32:31
Sometimes you may face an issue in query refreshing using ajax request(particulary in IE). In that case, you can disable the cache in JQuery,
$.ajaxSetup ({
cache: false
});