Hi! Im working in a project that needs to parse like 10 external XML or RSS resources of events. Some of this XML resources uses this format: http://web.resource.org/rss/1.0/modules/event/ <ev:startdate> <ev:enddate> <ev:location> <ev:organizer> <ev:type>
Other resources are not using this standard tags, they use tags in different languages like: <titulo> <fechainicio> <fechafinal> <categoria> another example: <title> <description> <startdate> Some of this events have description others dont. Some events are Google Calendar XML format. My question to you is not about to do my homework, is about standards and the best way to design or parse something that can have a lot of differents formats. There exist a way to parse an xml file with different formats and indentation of tags using Jquery? Now im going to investigate: http://blog.reindel.com/2007/09/24/jquery-and-xml-revisited/ http://ajaxian.com/archives/ajaxian-featured-tutorial-parsing-xml-with-jquery http://cgaskell.wordpress.com/2006/11/02/jquery-ajax-call-and-result-xml-parsing/ http://ajaxian.com/archives/ajaxian-featured-tutorial-parsing-xml-with-jquery Thanks in advance.