Tried that, now it does not appear to be making the call from what I can see...
Updated code:
I changed the code to try the following--
Updated code:
$(document).ready(function () {
$().SPServices({
webURL: "http://spsite/research/blog/",
operation: "GetListItems",
async: false,
listName: "Posts",
CAMLViewFields: "<ViewFields><FieldRef Name=\"Title\" /></ViewFields>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function () {
var title = $(this).attr("ows_Title");
$("#list").append("<li>" + title + "</li>");
});
}
});
});
Update:I changed the code to try the following--
- Access a list on the same sharepoint instance in another web... worked
- Access a sp2010 list in another environment ....didn't work