I was searched any solutions but still not help. That problem is about read character. How to read characters which come from ajax respond? this is the output from ajax, as JSON object:
["label" : "Item1", "value" : "TOP & HEAD"]
ideal output should be like this:
["label" : "Item1", "value" : "TOP & HEAD"]
this is the success function :
success: function(data){
// what code should be added so it can be read the character properly?
console.log(data);
response(data);
}
Need advice for it please..
[ 0: object label: "item" value:"TOP & HEAD", 1:Object label:... value:... ]
– user2392149 Apr 22 '15 at 09:54