Ready event
Properties
Property
Description
Example
edgetag('ready', (params) => {
if (params.isNewUser) {
// this will only ever trigger once on the first visit
window.alert('Hello and welcome to our shop!')
} else if (params.isNewSession) {
// this will only trigger on subsequent visits once per session
window.alert('Hi and welcome back to our shop!')
}
})Last updated
Was this helpful?

