Areas We Cover
We proudly serve:
|
|
|
const performanceChoice = localStorage.getItem('performance_choice'); const targetingChoice = localStorage.getItem('targeting_choice'); console.log("Performance choice is: ", performanceChoice, " - Targeting choice is ", targetingChoice); if (performanceChoice != null && targetingChoice != null) { gtag('consent', 'update', { 'ad_user_data': targetingChoice, 'ad_personalization': targetingChoice, 'ad_storage': targetingChoice, 'analytics_storage': performanceChoice }); }
|
|
|