I have the following JQuery AJAX request, it works fine in Chrome but when I test in IE, it returns undefined:
$.ajax({
url : 'http://pipes.yahoo.com/pipes/pipe.run?_id=26650603c42f41d78bfb5c5c740747d3&_render=json&_callback=?',
dataType : 'xml',
complete : function(data) {
console.log(data.responseText);
}
});
Did you tried like this:
Have just tested it is working fine
also get rid of console.log calls, if the developer tools arenot open it wont work in IE.