Loading XML in Firefox/Safari/Chrome

I have a grid loading XML data from a PHP source. IT works fine in IE8 but will not work in FF, Chrome or Safari. The grid is version 2.5. Here is my init code:

itemsGrid = new dhtmlXGridObject(‘items_grid’);
itemsGrid.setImagePath("…/…/dxg/imgs/");
itemsGrid.setHeader(“News,Title,Description,Created,Author”);
itemsGrid.setInitWidths(“50,100,*,150,150”);
itemsGrid.setColAlign(“right,left,left,center,left”);
itemsGrid.setColSorting(“int,str,str,date,str”);
itemsGrid.setSkin(“modern”);
itemsGrid.init();
itemsGrid.preventIECaching(false);
itemsGrid.loadXML(“newsitems_grid_xml”);

Any help would be greatly appreciated.

Check
docs.dhtmlx.com/doku.php?id=othe … mon_errors