$.ajax({
type: "GET",
url: "something.html",
dataType: "xml",
success:function(data){} ,
});
The content while accessing "something.html" is an XML but the above call is failed where if I use "something.xml" it is working fine.
Is it possible to make jQuery to forcefully evaluate the data as XML, without worrying about the file extension?