Hopefully someone can shed some light onto this issue for me.
I have a little APP (http://www.bentinckfencing.co.uk/fence_calculator.php)
I have a php file that sends a JSON encoded string back.
Im using jQuery to retrieve this string with the .ajax() function. After I have the JSON string, I am then using eval() in this manner
$.ajax({
type: "POST",
url: "ajax-test.php",
cache: false,
data: "choice=34",
success: function(data){
var myObject = eval('(' + data + ')');
//Now I set lots of variables in this manner and use them later in the script
var productName = myObject[0]['name'];
var productPrice = myObject[0]['price'];
var productID = myObject[0]['id'];
}
});
As always, this works well in all browsers except IE which is throwing the error object doesn't support this property or method
I just can't think where I'm going wrong.. If anyone has time to help, or even to check out my app, I'm be most helpful :)
edit
I've found that the Ajax call is successfully retrieving the data in IE. It's string like this [{"name":" 12 inch Rock Face Gravel Board","ID":"106","price":"7.00"},{"name":" 12 inch Double Sided Gravel Board","ID":"108","price":"10.50"},{"name":" 12 inch Smooth Gravel Boards","ID":"109","price":"7.00"}]
So now my issue is down to how I handle the data now that JS has it... Any ideas would be great :)
dataType: "JSON"? – Pekka 웃 Feb 13 '11 at 21:21evalever. If there is another way, then consider it. – JCOC611 Feb 13 '11 at 21:22var myObject = jQuery.parseJSON(stringFromPHP);and also added the dataType: "JSON"... Same issue – shane Feb 13 '11 at 21:27alert(data);? – user113716 Feb 13 '11 at 21:31