Top "Cookies" questions

An HTTP cookie is a piece of data stored by the user's web browser.

Why is jquery's .ajax() method not sending my session cookie?

After logging in via $.ajax() to a site, I am trying to send a second $.ajax() request to that site …

jquery ajax session cookies
Share cookie between subdomain and domain

I have two questions. I understand that if I specify the domain as .mydomain.com (with the leading dot) in …

http cookies subdomain
Delete cookie by name?

How can I delete a specific cookie with the name roundcube_sessauth? Shouldn't the following: function del_cookie(name) { document.…

javascript cookies
How do I create and read a value from cookie?

How can I create and read a value from a cookie in JavaScript?

javascript cookies
How to set cookie in node js using express framework?

In my application, I need to set a cookie using the express framework.I have tried the following code but …

node.js cookies express
Get and Set a Single Cookie with Node.js HTTP Server

I want to be able to set a single cookie, and read that single cookie with each request made to …

javascript node.js cookies httpserver
What is the difference between localStorage, sessionStorage, session and cookies?

What are the technical pros and cons of localStorage, sessionStorage, session and cookies, and when would I use one over …

html cookies local-storage session-storage
What is the best way to implement "remember me" for a website?

I want my website to have a checkbox that users can click so that they will not have to log …

security cookies remember-me
What is the maximum size of a web browser's cookie's key?

What is the maximum size of a web browser's cookie's key? I know the maximum size of a cookie is 4…

browser cookies
Set a cookie to never expire

Looking at the php documentation on setting a cookie I see that I can set an expiration date for the …

php cookies