Skip to content

Instantly share code, notes, and snippets.

@jamesmills
Created August 23, 2024 21:13
Show Gist options
  • Save jamesmills/b4026dd959f02853c441707c3597dc1a to your computer and use it in GitHub Desktop.
Save jamesmills/b4026dd959f02853c441707c3597dc1a to your computer and use it in GitHub Desktop.
<div id="adverts-container"></div>

<script>
    (function() {
        const uniqueId = '274e687a-d809-43e3-b33e-acc2d78d03e1'; // Replace with your own placement ID
        const containerId = 'adverts-container'; // Replace if you used a different ID in the HTML

        const script = document.createElement('script');
        script.src = 'https://cdn.reallygreatads.com/script.min.js';
        script.type = 'text/javascript';
        script.onload = function() {
            window.initAdverts(uniqueId, containerId);
        };
        document.head.appendChild(script);
    })();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment