I have the following code making a GET request on a URL:
$(\'#searchButton\').click(function() { $(\'#inquiry\').load(\'/portal/?f=searchBilling&pid=
Here is an example of how to control caching on a per-request basis
$.ajax({ url: "/YourController", cache: false, dataType: "html", success: function(data) { $("#content").html(data); } });