Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Navigate to Settings > App Setup > Privacy
  • Click on the Consent Handlers tab
  • User the drop-down menu next to the New button to select Embed Code
  • Copy the code from the pop up and place it on your website.

There are several ways you might use the embed code. Below are two examples, one inline, and one JQuery.1

Code Block
Inline Options (either of these 2 options will work):

<a href="javascript:void(0)" onclick="ll_privacy_manager.request_log_popup_open()">Click Here</a>

<a href="javascript:ll_privacy_manager.request_log_popup_open()">Click Here</a>


jQuery:



<a href="javascript:void(0)" id="btn_consent_handler">Click Here</a>
<javascript>
$(document).ready(function(){
$('#btn_consent_handler').on('click', function(){
	ll_privacy_manager.request_log_popup_open()
});
});
</javascript>


Data Subject Requests

Your users may want you to take an action on their data. This could range from asking you to provide them with all data you have gathered on them to deleting all of their data. Lead Liaison can help you manage these requests.

...