すべてのブラウザで正しい応答データで満たされたデータ変数を取得していますが、. ie のすべてのバージョンで、応答は空です..?
function getDirections(addr) {
var %id%url = encodeURI("http://maps.googleapis.com/maps/api/directions /json?origin=" + addr + "&destination=%id=maplocation%&sensor=false");
alert(%id%url); // looks good
$.getJSON(%id%url, function(data) {
alert(data); // empty in all versions of ie.. works in al other browsers
if(data.routes[0]){ //... and so on