Advanced Search
Search Results
89 total results found
Base Installation
Prerequisites HandL JS library must be loaded on your page You must have a TikTok Pixel ID from your TikTok Ads Manager Step 1: Get Your TikTok Pixel ID Log in to your TikTok Ads Manager Navigate to Assets → Events Create a new Pixel or select an existing o...
Event Sending
Basic Event Sending Use the HandL.sendTikTokEvent() function to send events to TikTok: HandL.sendTikTokEvent(eventName, eventData); Parameters: eventName (string, required): The name of the event eventData (object, optional): Event properties and parameters ...
Advanced Matching
Advanced matching allows TikTok to match events to users more accurately by sending hashed user identifiers. Requirements Enable Advanced Matching: <script> window.handl_advanced_matching = 1; window.handl_tiktok_pixel_id = 'YOUR_PIXEL_ID'; </script>...
Custom Events / Listeners
Listening to TikTok Events HandL fires custom events you can listen to: // Listen for TikTok initialization document.body.addEventListener('UTMSimpleTikTokInitCompleted', function(event) { console.log('TikTok Pixel initialized'); }); // Listen for any Tik...