I have a list of numbers in XML file.Some of them are repeated. I want to omit repeated numbers and then sort them .How can I do it in Ajax?
Sort numbers after omit same numbers
Collapse
X
-
Miss-concept about ajax. AJAX is not a programming language or not scripting. Its a method. You can do it in Javascript -
What do you have so far?
The basic idea is to
1. parse the XML file
2. store in an array/collection
3. on each loop iteration, check against stored values - if already stored ignore
4. when complete, sort
Which part are you having problems with?Comment
Comment