/    Sign up×
Community /Pin to ProfileBookmark

Writing and sending a cookie

I’m sure I’m missing something.
I trying to send a cookie with an experation time. Does anyone have a simple example.
Thanks
–tony

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@felgallSep 26.2005 — expires = new Date();

expires.setDate(getDate()+1);

document.cookie = name + '=' + escape(value) + '; expires=' + expires.toGMTString() + ';';

Will set the cookie to expire in exactly one day's time.
Copy linkTweet thisAlerts:
@tgodinoauthorSep 26.2005 — Thanks for the help.

I'm still not getting the cookie to be sent.

my cod. is:

name = "test cookie";

domain = WWW.painreliefmedia.com;

expires = new Date();

expires.setDate(getDate()+1);

document.cookie = name + '=' + escape(value) + '; expires=' + expires.toGMTString(); + domain;

<BODY>

Would you have a simple example i can look at?

thanks --tony
×

Success!

Help @tgodino spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,
)...