Cross Domain Ajax Get support for all IE versions

Cross Domain Ajax Get support for all IE versions

Hello,

I desperately need to write the following script so that it works in all IE browsers, the following code works in all browsers except all IE versions. In IE no call is made to the PHP, is there an example of how I can do this? What is the standard way to do so? Thanks!


 $.get('http://somedomain.com/promo_getstate.php', {
                 crossDomain : true,
                 cache:false,
                email: emailaddress,
                country: 'DE',
                lang: lang,
                source: 'Spring'
            }, function (data) {
               
                getstate = data;
})