Ajax -POST call with Jquery - cross domain

Ajax -POST call with Jquery - cross domain

Hi,

Tried this..and this works on FF and Chrome..not on IE..though call goes to the function.Any pointers?

And is there any other way to make a cross -domain POST call..

Can we do it with JSON instead of JSONP?
  1. function (url, requestData) {
  2. var jqryXHR = $.ajax({
  3. type: 'POST',
  4. url: anotherDomainurl,
  5. dataType: 'jsonp',
  6. contentType: 'application/json; charset=UTF-8',
  7. data: {
  8. requestParams: requestData
  9. }
  10. });
  11. }