Drop a single snippet onto your courier page and start collecting qualified quote leads with an indicative premium — without leaving your site.
Pick the product you'd like a quote for. More coming soon.
Two options. Pick whichever your web team prefers.
One container + one script. Iframe is injected and auto-resizes.
<div id="qc-quote"></div>
<script src="/embed.js" data-target="#qc-quote" defer></script>If you can't add scripts. Resize handler included.
<iframe src="/widget" style="width:100%;border:0;min-height:680px"
title="Courier quick quote" loading="lazy"></iframe>
<script>
window.addEventListener('message', function (e) {
if (e.data && e.data.type === 'qc-quote-resize') {
var f = document.querySelector('iframe[src*="/widget"]');
if (f) f.style.height = (e.data.height + 20) + 'px';
}
});
</script>If your-site.example.com sets a strict Content-Security-Policy or X-Frame-Options, your web team may need to allow the widget origin () in the frame-src directive.