Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ritcheyer
Created September 2, 2017 05:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ritcheyer/e32cd5003fb6b6d148321b959ed45c0f to your computer and use it in GitHub Desktop.
Save ritcheyer/e32cd5003fb6b6d148321b959ed45c0f to your computer and use it in GitHub Desktop.
<script>
var users_email = window.localStorage.getItem('leadpages-role-email');
var users_fname = window.localStorage.getItem('leadpages-role-first_name');
if( users_email !== null) {
seg.identify({ 'Email' : users_email });
}
if( users_fname !== null) {
seg.identify({ 'FirstName': users_fname })
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment