Hey,
I am using the following line of JQuery code:
$.get('/ajax/buy', {'categoryname':chosenSelected}, function(data) {
data = JSON.parse(data);
...
However, when running it on IE7 I get error msg "JSON undefined:".
How can I use the parser with compatibility to IE7 (and all major browsers)?
Thanks in advance, Joel