Partner toolkit
Put a useful estimate in front of every client.
The Vigilis partner calculator models static and scheduled bandwidth costs from the values a client enters. Embed the same responsive tool on your site without maintaining separate calculation logic.
Live partner embed
The production widget, in place.
Embed code
One snippet. One calculation engine.
The iframe is isolated from host-page styles, adapts to mobile widths, and reports its height to the optional resize listener. The canonical calculator remains on Vigilis, so partner pages do not create duplicate indexed content.
Request partner support<iframe
src="https://vigilis.io/calculator/embed/"
title="Bandwidth savings calculator"
width="100%"
height="760"
loading="lazy"
style="border:0;max-width:920px;width:100%;"
></iframe>
<script>
window.addEventListener("message", function (event) {
if (event.origin !== "https://vigilis.io") return;
if (event.data?.type !== "vigilis:calculator:resize") return;
document.querySelector(
'iframe[src="https://vigilis.io/calculator/embed/"]'
)?.setAttribute("height", String(event.data.height));
});
</script>