[jQuery] AJAX cross-domain with jsonp not working on IE6

[jQuery] AJAX cross-domain with jsonp not working on IE6


Hi,
I'm trying to get my $.ajax call with jsonp working. It is working on:
Firefox, IE7, Safari and every browser on the mac except IE6. :(
It does the call and I can see through fiddler that there is a
response but it won;t execute the callback function.
Code:
// url that contains this js code: http://www.example.com
$.ajaxSetup({
global : true,
dataType: 'jsonp',
jsonp : 'jsoncallback',
cache : false
});
$.ajax({
url: 'http://www.mowd.nl/gop.php',
data: {'cust':cust, 'action':'object', 'aid':aid,
'handle':q.Handle, 'clicked':true, 'clicktype':clicktype,
'return':'json'},
success: function(data) {
alert('Inside function');
}
});
The alert inside the success function will not be executed in IE6.
Does anyone has an idea?
Thnx!
- Charlie