In the below code, I'm using SPServices library to get a list item's author's name.
$().SPServices({
operation: "GetListItems",
async: false,
listName: "MyList",
CAMLViewFields: "<ViewFields Properties='True' />",
CAMLQuery: "<Query><Where><Eq><FieldRef Name='ID' /><Value Type='Integer'>" + id + "</Value></Eq></Where></Query>",
completefunc: function (xData, Status) {
$(xData.responseXML).find("[nodeName='z:row']").each(function() {
alert($(this).attr("ows_Author")));
});
}
});
Only in IE7 and IE8, it returns null. $(xData.responseXML).find("[nodeName='z:row']").length equals to 0. In other browsers it works fine.
Any ideas?