Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
The path parameter specifies a document location for the cookie, so the cookie is associated with a specific path and sent to the server only when the path matches the current document location or a parent path:
document.cookie = 'name=Flavio; path=/dashboard'
This cookie is sent on /dashboard, /dashboard/today, and other subpaths of /dashboard, but not on /posts, for example.
If you do not set a path, it defaults to the current document location. To apply a global cookie from a nested page, specify path=/.