IE7 not digesting JSON: "parse error" [resolved]
- by Kenny Leu
While trying to GET a JSON, my callback function is NOT firing.
$.ajax({ type:"GET",
dataType:'json',
url: myLocalURL,
data: myData,
success:
function(returned_data){alert('success');}
});
The strangest part of this is that
my JSON(s) validates on JSONlint
this ONLY fails on IE7...it works…