A: 

So, you want to do this with JavaScript.

DOM level 2 has methods for dealing with namespaces, but unfortunately Internet Explorer doesn't support these.

So you are left with the following options:

  1. Don't support IE.
  2. Write the code ignoring namespaces using DOM level 1 methods.
  3. Find JavaScript XML library that supports namespaces.
  4. Develop your own JavaScript XML library.
  5. Just use a regex to extract those strings.
Rene Saarsoo
do you have any ideas of any library that supports namespaces? Any examples of parsing the namespace using regex?
ferronrsmith
Unfortunately I have no idea of the libraries. About the regex: I meant just scanning XML with regex like /media:thumbnail url="(.*?)"/
Rene Saarsoo
don't worry I found something that got the job done perfectly thanks again
ferronrsmith
A: 

You should read about this, there are soooo many examples on the web about this...

start with the basics, JasvaScript & XML by David Flanagan, it covers how to create, read, load xml synchronous and asynchronous, and parse the XML data... and even convert XML into a html table.

balexandre
The thing is i need to integrate the following feed in my site and its kinda giving me a bit of trouble. I want to customize it to my liking, anyways thanks for the help :)
ferronrsmith