Skip to main content
updated the link
Source Link
stop-cran
  • 4.4k
  • 2
  • 37
  • 54

Ok, found the solution to the cookie problem.

See XHR specsXHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflowStackOverflow.

The solution to have the cookies sent when switching protocol and/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 
Fixed typo
Source Link
NeXuS
  • 1.8k
  • 1
  • 14
  • 14

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and or/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 

Ok, found the solution to the cookie problem.

See XHR specs, jQuery docs and StackOverflow.

The solution to have the cookies sent when switching protocol and/or subdomain is to set the withCredentials property to true.

E.g. (using jQuery)

 $.ajax( { /* Setup the call */ xhrFields: { withCredentials: true } }); 
Source Link
NeXuS
  • 1.8k
  • 1
  • 14
  • 14
Loading