Build known profiles through a simple lead capture modal powered by Pathfora.
Create custom on-site experiences for effectively capturing emails of anonymous visitors.
As third-party cookies decline, connecting consumer behavior across channels is becoming more and more challenging, complicating efforts to deliver effective personalization and target campaigns accurately. Capturing a strong identifier has quickly become one of the most crucial goals of an effective marketing strategy. To deliver relevant content based on engagement and to maximize marketing budgets by reaching the right users, businesses must capture identifiers, like email, that can connect behaviors across channels and build complete profiles.

How can Lytics help?
Programmatically review and identify current web visitors
Pre-built and custom segments for creating hyper-focused campaigns
Flexible, built-in personalization SDK for on-site experience delivery
No data mapping required for common form fields
Prerequisites
To activate this use case, you will need to have:
Access to an active Lytics account.
The Lytics JavaScript Tag installed on your site.
The ability to add JavaScript to your website via tag manager or CMS.
Entry-level knowledge of JavaScript.
Not familiar with JavaScript?
Level of effort Medium
Let's get started
1
2
- anonymous_profiles: This pre-built audience represents visitors without an email address present on the profile
3
jstag.on('pathfora.publish.done', function(topic, event) {
var module = new pathfora.Form({
id: 'lead-capture-form',
layout: 'slideout',
theme: 'dark',
headline: 'Sign up!',
msg: 'Submit this form to get updates',
formElements: [
{
"type": "email",
"required": true,
"label": "Email",
"name": "email"
}
]
});
var modules = {
target: [{
segment: "anonymous_profiles",
widgets: [module]
}]
};
pathfora.initializeWidgets(modules);
});
4
5