Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery: Set cookie for two domains

I want to set a cookie to a domain, but it should be available for a sub domain as well.

e.g. www.mydomain.com and sub.mydomain.com

When I set the cookie to the main domain it doesn't exist for the subdomain.

I use jQuery cookie Plugin: https://code.google.com/p/cookies/wiki/Documentation

My idea was to store it for both domains, have a look at the code:

var newOptions = {
    domain: 'sub.mydomain.com',
    secure: true
}
jaaulde.utils.cookies.set('name', 'value');
jaaulde.utils.cookies.set('name', 'value', newOptions );

What do I wrong?

like image 889
Artpixler Avatar asked Jun 26 '13 15:06

Artpixler


1 Answers

Cash2m is correct, you should be able to specify a . to reach your subdomains:

$.cookie('key', 'value', { domain: '.mydomain.com' });
like image 114
Jon Avatar answered Sep 23 '22 21:09

Jon