/*Using JQuery to pull files from italy.xml*/ function sendXMLRequest(){ $(document).ready(function() { $.ajax({ type: "GET", url: "xml/italy.xml", dataType: "xml", success: handleResponse });//end ajax /* $.ajax({ type: "GET", url: "../xml/italy.xml", dataType: "xml", success: handleResponse });*/ });//end ready }//end sendXML function handleResponse(xml) { //get pck name $(xml).find("package").each(function() { $("#package").append($(this).attr("title")); }); //get base price $(xml).find("package").each(function() { total_price = $(this).attr("baseCost"); $("#totalprice").append(total_price); }); }