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.
- $.ajax({
- url: 'AddressTypesListChange',
- type: "Get",
- xhrFields: {
- withCredentials: true
- },
- data: { 'addressType': $("#AddressTypeslist").val(), 'addressId': modelObj, 'type': $('#AddOrEdit').val(), 'companyName': $('#hdncompanyName').val() },
- cache: false,
- success: function (data) {
- $('#AddEditAddressPlaceHolder').html(data);
- },
- failure: function (errMsg) {
- alert(errMsg);
- }
- });
- }
- });
Any help to fix the IE 9 issue is appreciated. Other browsers seems to be working fine.