# Remove from Cart Tracking

## Remove from Cart Tracking

Use the `removefromcart` tracking type to track when a product is removed from the shopping cart. This interaction is essential for understanding user behavior and refining checkout conversion strategies.

### Tracking Commands

* `product`
* `removefromcart`

{% hint style="info" %}
As defined, the `removefromcart` event automatically activates the [jentis-data-layer-state](https://docs.jentis.com/developer-guide/states/jentis-data-layer-state "mention") in JENTIS using the `sendBeacon` sending method.
{% endhint %}

### Example

```javascript
_jts.push({
  track: "product",
  type: "removefromcart",
  id: "12345567",
  name: "Product Name"
});

_jts.push({
  track: "removefromcart"
});
```

### Properties for `removefromcart`

This command has no additional properties.

Ensure the `product` object uses `type: "removefromcart"` to correctly link it to the interaction state.

For more product-level configuration, see the [](https://docs.jentis.com/data-capture/web-tracking-setup/set-up-jentis-data-layer/e-commerce-tracking "mention").
