Exit Intent

Recover customers about to leve with personal recommendations.

The exit intent popup reacts when a visitor tries to leave your site. It pops up and displays interesting products, possibly converting a leaving visitor to a buying customer.

Enabling Exit Intent

Any clerk.io Content can be triggered opun a visitors intent to exit.

This is done simply by adding the attribute data-exit-intent="true" attribute is true.

<span
  class="clerk"
  
  data-api="recommendations/visitor/complementary"
  data-limit="20"
  data-labels='["Exit Intent / Popup"]'
  
  data-exit-intent="true">
</span>

Remember to also use a design that has the class clerk-popup to show the Exit-Intent as a popup.

Customisation

You can customise tha behaviour of the exit intent tryger further by delaying the trigger.

AttributeValueDefault
data-exit-intent-delayPrevents the exit intent from triggering until a certain amount of seconds have elapsed since this page was loaded.0
data-exit-intent-cooldownThe amount of seconds to wait until showing the exit intent content again.86400 (24 hours)
<span
  class="clerk"
  
  data-api="recommendations/visitor/complementary"
  data-limit="20"
  
  data-exit-intent="true"
  data-exit-intent-delay="5"
  data-exit-intent-cooldown="3600">
</span>