I get xml file from server with function ( JQuery )
function load_config_xml(){
$.ajax({
url: 'config/conf.xml',
dataType: "xml",
success:parse_xml,
error: function(){
alert("Error during loading xml file");
}
});
}
but it doesn't return fresh results, lighttpd caches. How to change request to avoid cached results ?