In-App Message JavaScript Bridge
hackleBridgeReady
Example
<button id="hackle-url">
Go to Hackle
</button>
<script>
window.addEventListener("hackleBridgeReady", function(){
document.querySelector("#hackle-url").addEventListener("click", function(e) {
Hackle.bridge.openUrl("https://hackle.io");
});
})
</script>Opening a URL
target
Description
Example
Open in new tab and close in-app message
Open in new window and close in-app message
Personalization
Querying User Properties
Example
Querying the Trigger Event
Example
Querying a Trigger Event Property
Example
User Behavior Tracking
Tracking Clicks
Example

Handling link click and click tracking simultaneously
Example
Event Tracking
Example
Closing an In-App Message
hideDuration
Description
Example
Last updated