Privacy Tools
Lucky Orange takes privacy and privacy regulation very seriously. The browser library provides powerful tools to make compliance with privacy regulation simple and easy to implement.
Last updated
LO.privacy.optOut()https://privacy.luckyorange.com/visitor/{VISITOR-ID}LO.privacy.getInfoLink()<button id="privacy-button">Manage my data</button>
<script>
document
.querySelector('#privacy-button')
.addEventListener('click', () => {
window.open(LO.privacy.getInfoLink())
})
</script><template>
<a :href="getLink()" target="_blank">Manage my data</a>
</template>
<script>
export default {
methods: {
getLink () {
return LO.privacy.getInfoLink()
}
}
}
</script>