Triggers
We created an additional trigger framework for you, so you can easy automate your customer flow.
Installation
Simply include the trigger script after the end of your body
<script src="https://static.gramchat.me/triggers.gram.js"></script>MessageOnScrollPercent(percent, message)
Automatically open gramchat and prompt the user with a message if he/she scrolled down on your page for a certain percentage
<script>
MessageOnScrollPercent(80, "This message will pushed to gramchat
if the user scrolled down 80% of the page");
</script>MessageOnMouseLeave(message)
Automatically open gramchat and prompt the user with a message the moment the mouse fades out of the window.
<script>
MessageOnMouseLeave("Thanks for visiting our page! Bye");
</script>MessageOnHover(htmlID, message)
Automatically open gramchat and prompt the user with a message if he/she hovers over the given element
MessageOnClick(htmlID, message)
Automatically open gramchat and prompt the user with a message if he/she clicks the given element
Last updated
Was this helpful?