My XML file is not being by Google Chrome and Internet Explorer
I am making a simple javascript application where I need to load an xml files and show them in front of the user. but my code only works in Mozilla Firefox but when it comes to chrome and Internet Explorer they are not working. I am loading my XML document in a local machine. $(document).ready(function() { $('.buttons').slideToggle('medium'); $.ajax({ url: "dictionary.xml", success: function( xml ) { $(xml).find("word").each(function(){ $("ul").append("<li>" + $(this).text() + "</li>"); }); } }); } And Here's my XML <?xml version="1.0" encoding="UTF-8"?> <xml> <word> <threeletter>RIP<