/    Sign up×
Community /Pin to ProfileBookmark

hw do i delete cookies when the user close the browser window

to post a comment
JavaScript

7 Comments(s)

Copy linkTweet thisAlerts:
@pyroNov 27.2003 — When you set the cookie, do not set an expiry time, and it will expire when the browser is closed.
Copy linkTweet thisAlerts:
@chuxsauthorNov 27.2003 — thanx, but is it possible for me to delete the cookie base on a specific time say 10 mins
Copy linkTweet thisAlerts:
@pyroNov 27.2003 — 10 minutes from when it was set, or 10 minutes after the browser was closed?
Copy linkTweet thisAlerts:
@chuxsauthorNov 28.2003 — 10 minutes from when it was set
Copy linkTweet thisAlerts:
@pyroNov 28.2003 — Try this:

<script type="text/javascript">
expiry = new Date();
expiry.setTime(expiry.getTime()+600000);
document.cookie = "cookiename=value; expires="+expiry.toGMTString();
</script>
Copy linkTweet thisAlerts:
@chuxsauthorDec 01.2003 — thanx
Copy linkTweet thisAlerts:
@pyroDec 01.2003 — You're welcome.
×

Success!

Help @chuxs 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.17,
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: @nearjob,
tipped: article
amount: 1000 SATS,

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

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