Embed Installation
Marketing forms can be opened as standalone pages, embedded with JavaScript, or embedded with iframes.
Use the official public domain for new installs:
https://mkt.xr.health
The root path / is a form menu. Do not use it as an iframe source for a specific form.
Standalone Pages
| Form | URL |
|---|---|
| Medicare Eligibility Check | https://mkt.xr.health/medicare-eligibility.html |
| Medicare DME Long Form | https://mkt.xr.health/dme-long-form.html |
Script Embeds
Use script embeds when the host page allows third-party JavaScript and should render the form inline.
Medicare Eligibility Check
<div id="xr-medicare-widget"></div>
<script src="https://mkt.xr.health/widget/medicare-check.js"></script>
Medicare DME Long Form
<div id="xr-dme-long-form-widget"></div>
<script src="https://mkt.xr.health/widget/dme-long-form.js"></script>
Iframe Embeds
Use iframe embeds for CMS pages, landing-page builders, or host pages where isolating the form is simpler.
Medicare Eligibility Check
<iframe
src="https://mkt.xr.health/medicare-eligibility.html"
title="XRHealth Medicare Eligibility Check"
style="width: 100%; min-height: 720px; border: 0; display: block;"
></iframe>
Medicare DME Long Form
<iframe
src="https://mkt.xr.health/dme-long-form.html"
title="XRHealth Medicare DME Long Form"
style="width: 100%; min-height: 1100px; border: 0; display: block;"
></iframe>
Implementation Notes
- Keep iframe width at
100%so forms work on mobile and desktop. - Start with
min-height: 720pxfor Medicare Eligibility Check andmin-height: 1100pxfor Medicare DME Long Form. - Avoid restrictive
sandboxattributes unless the final host page has been tested; the forms need to submit requests to their own APIs. - The old Vercel deployment URL may continue to work for compatibility, but new installs should use
https://mkt.xr.health.