Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/deradon/jquery-iframe_auto_resize

JQuery Plugin to auto-resize iFrame from same domain.
https://github.com/deradon/jquery-iframe_auto_resize

deprecated unmaintained

Last synced: 25 days ago
JSON representation

JQuery Plugin to auto-resize iFrame from same domain.

Awesome Lists containing this project

README

        

= JqueryIframeAutoResize

JQuery Plugin to auto-resize iFrames from same domain.

== Setup: put following to your Gemfile

..
gem "jquery-iframe_auto_resize"
..

== Incude in your application.js

..
//= require jquery.iframe_auto_resize
..

== Example:

$(document).ready(function () {
$('iframe').iframeAutoResize({
interval: 100, // ms
minHeight: 200, // px
maxHeight: 800, // px
heightOffset: 5, // px
animationSpeed: 500, // in px / s
maxAnimationTime: 1000, // in ms
callback: function(){/*...*/},
debug: false
});
});

== Known Bugs:
* Issues if margins on iFrames are used
* Issues with IE if iframe with "frameborder='1'" is used