javascript - Get all xml files from a certain folder with AJAX -


i have following question: know how load xml file folder ajax. can load xml files folder without naming them specifically? tried won't work.

 $.ajax({         type: "get",         url: "xml/*.xml",         datatype: "xml",         success: xmlparser    }); 

i pretty sure url property of ajax needs point particular file. in:

url: "xml/myxmlfile.xml, 

Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -