Events
Track any events provided by the Frontnow Advisor to adept your user experience or track the events with your event tracking systems.
init
This event gets triggered when the Frontnow Advisor is initialized.
advisor.on("init", function () {
console.log("Advisor initialized");
});open
This event gets triggered when the Frontnow Advisor is opened.
advisor.on("open", function () {
console.log("Advisor opened");
});close
This event gets triggered when the Frontnow Advisor is closed.
advisor.on("close", function () {
console.log("Advisor closed");
}); hideLauncher
This event gets triggered when the Frontnow Advisor is opened.
showLauncher
This event gets triggered when the Frontnow Advisor is opened.
pageChange
This event gets triggered when the page changes inside the Frontnow Advisor.
prompt
This event gets triggered when the user entered a new question.
suggestionClick
This event gets triggered when suggested question is clicked on the start page.
click
This event gets triggered when a document is clicked in the recommendation carousel.
These events provide developers with flexibility to handle any events inside the Frontnow Advisor.
Was this helpful?