Skip to content

Embedded.js makes it easy to create and share responsive embeddable content

License

Notifications You must be signed in to change notification settings

SimplyBuilt/embedded.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Embedded.js

Embedded.js makes it easy to create and share responsive embeddable content. The library will create IFRAMEs and help resize them automatically.

It is used by SimplyBuilt and works great with our Embedded Widget feature!

Details

Embedded.js consist of 3 parts:

  1. The hook script which loads the embed script and acts as an anchor for where content will be embedded.
  2. The embed script which dynamically creates IFRAME elements and communicates with them to determine the height.
  3. The client script which is used within the embedded content so it can communicate with the top-frame

Quick Example

Suppose we have some web content we want to be embeddable across the web. The usual recipe for this is to embed the content through an IFrame.

Since this content may be consumed on a variety of devices, it needs to be responsive and potentially variable in height. In order for embedding to work well, the IFrame in the top document needs to be able to dynamically resize itself to the height of the content. To achieve this we can use Embedded.js!

First, we set up a script tag with the hook and a few data attributes:

<script src="/js/hook.js" data-api="/js/embed.js" data-location="http://example.com/embeddable-content"></script>

The data-api attribute specifies where to find the embed script. The data-location attribute specifies the src attribute for the dynamically created <iframe>.

Next, include the client script within the embedded content like so:

<head>
  <script src="/js/client.js"></script>
</head>

Voilà! We can now embed responsive content with ease!

CDN Hosting

Coming soon!

License

MIT

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Crafted with <3 by @SimplyBuilt.


About

Embedded.js makes it easy to create and share responsive embeddable content

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published