Hi
I'm having some problems with this jQuery....I'm new to it. It looks like it's the same as the example I'm taking it from...
$.getJSON('<%= Page.ResolveUrl("~/MyService.aspx") %>',
function(data) {
$.each(data, function(index, elem) {
alert(elem.Name);
});
}
);
elem.Name always says 'undefined'! I'm getting the following data returned from my service...
{"ID":1,"Name":"David Bowie"}