Embed our free calculators
Add a free, always-up-to-date PayCheckCalculator calculator to your site, blog, or HR resource page. Copy the snippet, paste it into your page's HTML, and you're done — the calculator updates automatically each tax year. Use of the widget is free; please keep the attribution link intact.
Optional: auto-resize the widget
The widget reports its height to the parent page. To make the iframe grow with its
content automatically, add this once before </body>:
<script>
window.addEventListener('message',function(e){
if(e.data&&e.data.type==='pcalc-embed-height'){
document.querySelectorAll('iframe[src*="/embed/"]').forEach(function(f){
f.style.height=e.data.height+'px';
});
}
});
</script>