I am using getJSON to fetch the results from server side but facing browser cache problems. I want the cache to be false. I tried using this just before my getJSON call.
 $.ajaxSetup({
                cache: false
            })
But I am not getting the expected results. It still shows the old results.