Skip to content

Instantly share code, notes, and snippets.

@jiverson
jiverson / iframeSnippet.html
Created June 10, 2024 17:39 — forked from sperand-io/iframeSnippet.html
Using Segment via iFrame Communication
<script>
/**
* Provides a fake analytics object that sends all calls to the parent window for processing
*/
var analytics = (function() {
var eventQueue = [];
// Send the events to the frame if it's ready.
function flush(method, args) {
while (eventQueue.length) {