I m facing problem in geting xml on mozila browser. like , using “?ReadViewEntries” and now i wana filter some values or more professionally I wana get node’s value one by one . Same thing i m doing easly on IE. But i m not able to do this . Moreover I m not able to get the length of xml document return by
Mozilla doesn’t do data islands – in fact, nothing does except IE. Use an XMLHttpRequest object to get the XML document instead. (There are several cross-browser AJAX examples out there, including on this forum.)
This example from Apple is a good start. Your document request would be a GET, and you can begin processing as soon as onreadystatechange detects a success:
The XML document object will be the same as it is for your current code, and you can use the same methods against it. ONly the means of getting the document changes.