When i do the following:
$.ajax({
type: 'GET',
url: 'http://www.domain.tld/feed',
dataType: 'xml',
success: function(data) {
...
}
});
Everything´s fine in IE(8).
But when i change the url option to
http://www.domain.tld/?feed=myfeed
IE does nothing. I think the ? is the problem, but how can i get this working in this lovely browser?