IE9 Ajax get issue with cookie and session

IE9 Ajax get issue with cookie and session

Hi all,
I am having weird issue with IE 9 when making ajax get request using jQuery. I am using jQuery 1.11.4
Here is my get Request looks like.
  1.  $.ajax({
  2.                 url: 'AddressTypesListChange',
  3.                 type: "Get",
  4.                 xhrFields: {
  5.                     withCredentials: true
  6.                 },
  7.                 data: { 'addressType': $("#AddressTypeslist").val(), 'addressId': modelObj, 'type': $('#AddOrEdit').val(), 'companyName': $('#hdncompanyName').val() },
  8.                 cache: false,
  9.                 success: function (data) {
  10.                     $('#AddEditAddressPlaceHolder').html(data);                     
  11.                 },
  12.                 failure: function (errMsg) {
  13.                     alert(errMsg);
  14.                 }
  15.             });
  16.         }
  17.     });
Any help to fix the IE 9 issue is appreciated. Other browsers seems to be working fine.