I want to display data in the value field of dictionary using Ajax. I know the format to display, but stuck in displaying one of the fields. Code is here :
$.each(result, function(index, element) {
alert(element.Place);
alert(element.Unique Name);
});
element.Unique Name
doesn't work as there is a space in between( It is Unique Name not UniqueName). Could you guys help me out displaying this?