Skip to content Skip to sidebar Skip to footer

How To Set A Cookie For Another Domain Using Javascript?

Is it possible to set cookie in one domain and access the same in another domain? Actually I need to set a cookie in A.com page when user clicks a button and then user needs to be

Solution 1:

Is it possible to set cookie in one domain and access the same in another domain?

No. That would be a security risk.

Cookies were designed for maintaining state, like user preferences. Would you like Joe Random Evil Site to be able to change your preferences for your Online Banking service?

Solution 2:

Solution 3:

if you have both A.com and B.com, you can simply make a http (or https whatever) request from A to B and put on it whatever you want to pass to B.com . B.com gets the request, saves it serverside, when user enters the B.com, server sends back the data to user.

Post a Comment for "How To Set A Cookie For Another Domain Using Javascript?"