I am trying to get getJSON working on my IE, but I read that IE doesn't support it that well. So I decided to use ajax instead.
My code is:
$.ajax({ dataType: 'json', url: 'http://openexchangerates.org/latest.json', success: function(data) { alert('done'); } }); Thanks