I am trying to understand what is the behavior of the request if we specify cache:false,is there a difference if we will not specify cache:false ?
$.ajax({
cache: false,
type: "GET",
data: "somedatehere",
url: "somurl.php",
success:function(response){
//the response here.
}
});
Thank you in advance.