$.ajax({
url: "server.jsp",
dataType: 'json',
success: function(data){
alert(data.one);
}
});
jquery can't read Data in the "server.jsp".but at the :
$.ajax({
url: "server.txt",
dataType: 'json',
success: function(data){
alert(data.one);
}
});
very easy read data in the "server.txt" file.
Can you check it?