Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I want to insert, update, delete and select from xml file with java script.
Posted
Updated 6-Nov-12 2:00am
v3
Comments
MT_ 6-Nov-12 7:16am    
Why are you reposting ? http://www.codeproject.com/Answers/489252/howplustoplusread-2cplusupdate-2cplusdeleteplusdat
engmebeed 6-Nov-12 7:20am    
the other question was by C# now i want with javascript
MT_ 6-Nov-12 7:48am    
But you are saying with C# web-service. You already got details how to read/write XML in C#. So the remaining part is to develop WebService. If that is the question than you should form the question little differently..isn't it?
engmebeed 6-Nov-12 8:00am    
Is this good?
enhzflep 6-Nov-12 8:34am    
No, not especially. - In that the question is very brief and unlikely to have covered what you really need.

A few points -
1) You can only save the file client-side if using IE
2) You can traverse an XML file in just the same way you traverse html with the DOM functions.
3) Tips for getting a better answer

1 solution

using ajax you can read.. xml sample code is given below

JavaScript
$(document).ready(function () {
    $.ajax({
        url: 'http://theresidency.libsyn.com/rss',
        type: 'GET',
        dataType: "xml",
        success: function(data) {
           parseXml(data);
        }
    });
});

function parseXml(xml) {
var item = $(xml).find("item");

  $(item).each(function() {
    //do wat you want to do from it.
  });

}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900