how to disable caching of ajax response in JQuery?

by Ramya 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
});
995
like
0
dislike
0
mail
flag

You must LOGIN to add comments