I need to load a configuration XML into a DIV, for that I'm using the following code:\[code\] $(document).ready(function(){ console.log("Document ready"); $("#footer_config").load("/config/footer_config.xml"); });\[/code\]This code works ok in Chrome but it doesn't in IE. It prints "Document ready" in the console but the "footer_config" DIV is empty. If I press CTRL+F5 in IE it works and the div has the content of the XML file. I'm using IE 9. Any ideas?Thanks in advance!