jQuery - $.getJSON

How can I prevent clientside caching in IE8 when using jQuery getJSON.

Client side caching when using this method doesn't happen when I use FF or Webkit, but IE uses cached data.
Reply:
 
 
 
 
You can just add a random parameter to the call, traditional cache breaker style:
$.getJSON('../jsp/userdetails.jsp',{ "noCache": Math.random() },function(dat){
	// do stuff here
})
rendered @ Mon May 20 15:37:47 CEST 2013