What is the best method to detect xml in JavaScript
e.g. is it possible to detect the mime type of a document - particularly if it is text/xml in JavaScript.
this needs to work in Chrome.
thanks,
Josh
|
|
What is the best method to detect xml in JavaScript e.g. is it possible to detect the mime type of a document - particularly if it is text/xml in JavaScript. this needs to work in Chrome. thanks, Josh
|
||||||||||
|
|
|
If you are using
(I seem to be using this code sample a lot...) |
||
|
|
|
|
You can't determine what the mime-type is with Javascript. I would recommend doing checks on the data returned to see if it is valid XML before you try to parse it. (I'm only assuming what you're trying to do. I can provide a more rigid example if you clarify what your goal is.) |
||
|
|