An open API service indexing awesome lists of open source software.

https://github.com/coreh/iframify

Wraps the given HTML code in an iframe that resizes dynamically to fit its contents.
https://github.com/coreh/iframify

Last synced: 4 months ago
JSON representation

Wraps the given HTML code in an iframe that resizes dynamically to fit its contents.

Awesome Lists containing this project

README

          

# iframify

Wraps the given HTML code in an iframe that resizes dynamically to fit its contents.

Useful for displaying embeds that use `` tags without exposing your page to foreign code.

## Usage:

```javascript
var iframe = iframify('<h1>Hello, World</h1>');
document.body.appendChild(iframe);
```