5
votes
3answers
150 views

Converting KML/XML to Javascript

So, I have the boundaries of every states in the US, from the google map KML file. This KML file is actually a XML file. I'm converting this file to a JS file compatible with google map in order to ...
5
votes
3answers
2k views

How can you map the differences between JavaScript objects?

The reason I want to do this is that the JavaScript objects are created from XML elements and if the element has changed I want to be able to detect that change in the JavaScript objects. So I wrote a ...
5
votes
1answer
664 views

Build menu from MS Word XML

I've recently assembled some jQuery that allows a user to build out a bulleted list in MS Word with hyperlinks and turn that into a HTML unordered list. Ideas for uses are website menu systems where ...
3
votes
1answer
221 views

Sencha touch with XML

Could you please review the following? My concern is XML parsing is hardcoded: ...
2
votes
3answers
726 views

What is the more effective way to get array of data out of xml for d3 chart?

I am writing a small application that would interactively allow user for xml file manipulation with d3 interactive charts. My xml file has the following hierarchy : ...
2
votes
1answer
150 views

Javascript XML Parser wrapper

I created an XML wrapper to easily access XML data. Please tell me what do you think about it. Performance Scalability Anything else... This is how you use it: ...
2
votes
4answers
309 views

Improving search through XML file

I'm working on a function that extracts information from an XML document and compares to what the user has typed in. Can you suggest any ways in which I can improve it? The variables in the XML file ...
1
vote
0answers
133 views

XML to JavaScript library design [closed]

I created a small library to parse xml to javascript. Can anyone tell me if the design is correct for a library or if there is a better technique? I wrote a small Usecase example here. You can find ...
0
votes
0answers
40 views

Selecting nodes how-to

I'm working on a tool to help me work with XML documents easier, and this function is at it's hart of selecting nodes based on arbitrary criteria. I forged it to accept a filter callback, Node to ...