I am calling a php script to get the data using ajax. It works without any problems on chrome and other browsers but on IE (of course) it does not work.
My data format is as follows:
[1234000000000,56]
this is the script I am trying to call to get the abobe value:
$.ajax({
url: 'get_cpu.php',
success: function(data) {
var myObj = JSON.parse(data);
alert(obj);
I tried outputing this file in many different formats to make IE happpy without any luck. How can I format this data in json so that ie understands? I really appreciate any insight?
Best regards,