# Combine Hotjar Sessions with UTM Grabber

## UTM attribution overview

Connect HandL UTM Grabber with Hotjar UTM Tracking Integration. Hotjar records behavior, not UTMs. You can push handl\_utm into Hotjar identify or events for filtering recordings.

Hotjar records behavior, not UTMs. You can push handl\_utm into Hotjar identify or events for filtering recordings.

### Steps

```
if (typeof hj !== 'undefined' && typeof handl_utm !== 'undefined') {
  hj('identify', null, { utm_source: handl_utm.utm_source });
}
```