# Track UTMs with Sleeknote with HandL UTM Grabber

## UTM attribution overview

This guide explains Track UTMs with Sleeknote with HandL UTM Grabber. It helps you capture UTM source, medium, campaign, term, content, click IDs, referrer, and landing page data and keep the marketing context needed for accurate reporting across forms, bookings, signups, and sales.

Add the code in your page and you will be all set!

```
document.addEventListener('sleekNote', function (e) {
	if (e.data.type == 'submit'){
		data = e.data.data
		Cookies.set('email', data.email)
		_segq.push(["identify", data.email]);
	}
}, false);
```