PRIVACY-FIRST DISTRIBUTION

Embeddable calculators

Add a fast MyClockLedger calculator to your site. Embedded tools run in the visitor’s browser, use no analytics by default, and send only resize and non-sensitive completion events.

Hours Worked Calculator

Live preview

Embed code

<iframe
  src="https://myclockledger.com/embed/hours-worked/"
  title="Hours Worked Calculator"
  loading="lazy"
  style="width:100%;height:430px;border:0"
  sandbox="allow-scripts allow-forms allow-same-origin"
></iframe>

Copy this code into your page where the calculator should appear.

Time Card Calculator

Live preview

Embed code

<iframe
  src="https://myclockledger.com/embed/time-card/"
  title="Time Card Calculator"
  loading="lazy"
  style="width:100%;height:900px;border:0"
  sandbox="allow-scripts allow-forms allow-same-origin"
></iframe>

Copy this code into your page where the calculator should appear.

Optional automatic resizing

window.addEventListener('message', (event) => {
  if (event.origin !== 'https://myclockledger.com') return;
  if (event.data?.type !== 'myclockledger:embed:resize') return;
  const frame = document.querySelector('iframe[src*="myclockledger.com/embed/"]');
  if (frame) frame.style.height = event.data.height + 'px';
});

Completion events include only the calculator identifier and a valid-completion flag. They never include entered times, breaks, rates, totals, or other calculator values.