# Cookieless Tracking


RudderStack's centralized cookie management tools let you manage your cookie settings across websites and apps in a user-centric, privacy-compliant manner.

The [JavaScript SDK v3]({{< ref "sources/event-streams/sdks/rudderstack-javascript-sdk/" >}}) supports [cookieless tracking]({{< ref "sources/event-streams/sdks/rudderstack-javascript-sdk/data-storage-cookies/persistent-data-storage.md" >}}) that allows you to gather valuable user insights while adhering to the stringent data privacy and regulation norms. 

With this feature, you can specify what type of user information you want to collect and where (or not) to store it while loading the JavaScript SDK.

## How cookieless tracking works

While [loading the JavaScript SDK]({{< ref "sources/event-streams/sdks/rudderstack-javascript-sdk/load-js-sdk.md" >}}), you can:

- Specify what user information you want to store like `userId`, `anonymousId`, session information, etc. 
- Define the storage for your user information, like browser cookies, local storage, in-memory storage, or not store it at all.

You can also set storage for specific information type. For example, you can store `userId` in the browser cookies, `anonymousId` in the in-memory storage, session information in local storage, and so on.

See [Configure Persistent Data Storage]({{< ref "sources/event-streams/sdks/rudderstack-javascript-sdk/data-storage-cookies/persistent-data-storage.md" >}}) for more information.

<br />
