Can I embed or ‘iframe’ Documoto within another website?
An iFrame is an HTML element typically used to embed external pages on a website. Documoto supports iFraming of our application or the ability to embed Documoto within your website for any Documoto customers on the Business Subscription Plan or above.
Article Topics
Common Use Cases
The most common use case for iFraming Documoto is typically with a “SendItems” integration. With a Documoto SendItems integration, the Documoto shopping cart is hidden. When users click the “Add to Cart” shopping cart icon in Documoto, a real-time integration adds parts to an external shopping cart (such as a Dealer Portal, Ecommerce or Work Order) where the Documoto application is embedded.
While the above use case is the most common, Documoto can be iFramed for any number of reasons, including for library or view-only purposes of content, and even with full Documoto shopping cart capabilities.
Limitations
While iFraming of our application is officially supported, Documoto is still subject to the same browser limitations of any other embedded or iFramed application. To find a list of potential browser compatibility issues with iFrame support, please reference this link: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe#browser_compatibility
Example HTML
See attached HTML file, or HTML text below:
<html>iFrame Example.html
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body>
<h2>This is our loaded frame:</h2>
<iframe height="800" width="800" src=https://[tenantkey].app.documoto.com/ui/home>;</iframe>
</body>
<html>