you can set :
$.ajaxSetup({cache: false})
or:
$.ajaxSetup({beforeSend:
function(e,xhr,s){xhr.setRequestHeader("If-Modified-Since", new Date(0));}})
or:
$('#display').ajaxSend(function(e,xhr,s){xhr.setRequestHeader("If-Modified-Since",
new Date(0));}).load('../forms/test_form_1.html');

Reply via email to