wl-iframe-resizer

Keep same and cross domain iFrames sized to their content with support for window/content resizing, and multiple iFrames.

Usage no npm install needed!

<script type="module">
  import wlIframeResizer from 'https://cdn.skypack.dev/wl-iframe-resizer';
</script>

README

This is a fork

iFrame Resizer V3

NPM version NPM Downloads <!-- Build Status Known Vulnerabilities -->Coverage Status Donate

This library enables the automatic resizing of the height and width of both same and cross domain iFrames to fit their contained content. It provides a range of features to address the most common issues with using iFrames, these include:

  • Height and width resizing of the iFrame to content size.
  • Works with multiple and nested iFrames.
  • Domain authentication for cross domain iFrames.
  • Provides a range of page size calculation methods to support complex CSS layouts.
  • Detects changes to the DOM that can cause the page to resize using MutationObserver.
  • Detects events that can cause the page to resize (Window Resize, CSS Animation and Transition, Orientation Change and Mouse events).
  • Simplified messaging between iFrame and host page via postMessage.
  • Fixes in page links in iFrame and supports links between the iFrame and parent page.
  • Provides custom sizing and scrolling methods.
  • Exposes parent position and viewport size to the iFrame.
  • Works with ViewerJS to support PDF and ODF documents.
  • Fallback support down to IE8.

Install

This package can be installed via NPM (npm install iframe-resizer@3 -save).

Getting started

The package contains two minified JavaScript files in the js folder. The first (iframeResizer.min.js) is for the page hosting the iFrames. It can be called with native JavaScript;

var iframes = iFrameResize( [{options}], [css selector] || [iframe] );

or via jQuery. (See notes below for using native version with IE8).

$('iframe').iFrameResize( [{options}] );

The second file (iframeResizer.contentWindow.min.js) is a native JavaScript file that needs placing in the page contained within your iFrame. This file is designed to be a guest on someone else's system, so has no dependencies and won't do anything until it's activated by a message from the containing page.

Typical setup

The normal configuration is to have the iFrame resize when the browser window changes size or the content of the iFrame changes. To set this up you need to configure one of the dimensions of the iFrame to a percentage and tell the library to only update the other dimension. Normally you would set the width to 100% and have the height scale to fit the content.

<style>iframe{width: 1px;min-width: 100%;}</style>
<iframe id="myIframe" src="http://anotherdomain.com/iframe.html" scrolling="no"></iframe>
<script>iFrameResize({log:true}, '#myIframe')</script>

Notes: Using min-width to set the width of the iFrame, works around an issue in iOS that can prevent the iFrame from sizing correctly. Also the scrolling attribute is set to 'no' in the iFrame tag, as older versions of IE don't allow this to be turned off in code and can just slightly add a bit of extra space to the bottom of the content that it doesn't report when it returns the height.

If you have problems, check the troubleshooting section below.

Example

To see this working take a look at this example and watch the console.

Options

log

default: false
type:    boolean

Setting the log option to true will make the scripts in both the host page and the iFrame output everything they do to the JavaScript console so you can see the communication between the two scripts.

autoResize

default: true
type:    boolean

When enabled changes to the Window size or the DOM will cause the iFrame to resize to the new content size. Disable if using size method with custom dimensions.

Note: When set to false the iFrame will still inititally size to the contained content, only additional resizing events are disabled.

bodyBackground

default: null
type:    string

Override the body background style in the iFrame.

bodyMargin

default: null
type:    string || number

Override the default body margin style in the iFrame. A string can be any valid value for the CSS margin attribute, for example '8px 3em'. A number value is converted into px.

bodyPadding

default: null
type:    string || number

Override the default body padding style in the iFrame. A string can be any valid value for the CSS margin attribute, for example '8px 3em'. A number value is converted into px.

checkOrigin

default: true
type:    boolean || array

When set to true, only allow incoming messages from the domain listed in the src property of the iFrame tag. If your iFrame navigates between different domains, ports or protocols; then you will need to provide an array of URLs or disable this option.

inPageLinks

default: false
type:    boolean

When enabled in page linking inside the iFrame and from the iFrame to the parent page will be enabled.

interval

default: 32  (in ms)
type:    number

In browsers that don't support mutationObserver, such as IE10, the library falls back to using setInterval, to check for changes to the page size. The default value is equal to two frame refreshes at 60Hz, setting this to a higher value will make screen redraws noticeable to the user.

Setting this property to a negative number will force the interval check to run instead of mutationObserver.

Set to zero to disable.

heightCalculationMethod

default: 'bodyOffset'
values:  'bodyOffset' | 'bodyScroll' | 'documentElementOffset' | 'documentElementScroll' |
         'max' | 'min' | 'grow' | 'lowestElement' | 'taggedElement'

By default the height of the iFrame is calculated by converting the margin of the body to px and then adding the top and bottom figures to the offsetHeight of the body tag.

In cases where CSS styles causes the content to flow outside the body you may need to change this setting to one of the following options. Each can give different values depending on how CSS is used in the page and each has varying side-effects. You will need to experiment to see which is best for any particular circumstance.

  • bodyScroll uses document.body.scrollHeight *
  • documentElementOffset uses document.documentElement.offsetHeight
  • documentElementScroll uses document.documentElement.scrollHeight *
  • max takes the largest value of the main four options *
  • min takes the smallest value of the main four options *
  • grow same as max but disables the double resize that is used to workout if the iFrame needs to shrink. This provides much better performance if your iFrame will only ever increase in size
  • lowestElement Loops though every element in the the DOM and finds the lowest bottom point
  • taggedElement Finds the bottom of the lowest element with a data-iframe-height attribute

Notes:

If the default option doesn't work then the best solutions is to either to use taggedElement, or to use lowestElement in modern browsers and max in IE10 downwards.

var isOldIE = (navigator.userAgent.indexOf("MSIE") !== -1); // Detect IE10 and below

iFrameResize( {
    heightCalculationMethod: isOldIE ? 'max' : 'lowestElement'
});

Alternatively it is possible to add your own custom sizing method directly inside the iFrame, see iFrame Page Options section below.

The lowestElement option is the most reliable way of determining the page height. However, it does have a performance impact in older versions of IE. In one screen refresh (16ms) Chrome can calculate the position of around 10,000 html nodes, whereas IE 8 can calculate approximately 50. The taggedElement option provides much greater performance by limiting the number of elements that need their position checked.

* The bodyScroll, documentElementScroll, max and min options can cause screen flicker and will prevent the interval trigger downsizing the iFrame when the content shrinks. This is mainly an issue in IE 10 and below, where the mutationObserver event is not supported. To overcome this you need to manually trigger a page resize by calling the parentIFrame.size() method when you remove content from the page.

maxHeight / maxWidth

default: infinity
type:    integer

Set maximum height/width of iFrame.

minHeight / minWidth

default: 0
type:    integer

Set minimum height/width of iFrame.

resizeFrom

default: 'parent'
values: 'parent', 'child'

Listen for resize events from the parent page, or the iFrame. Select the 'child' value if the iFrame can be resized independently of the browser window. Selecting this value can cause issues with some height calculation methods on mobile devices.

scrolling

default: false
type:    boolean | 'omit'

Enable scroll bars in iFrame.

  • true applies scrolling="yes"
  • false applies scrolling="no"
  • 'omit' applies no scrolling attribute to the iFrame

sizeHeight

default: true
type:    boolean

Resize iFrame to content height.

sizeWidth

default: false
type:    boolean

Resize iFrame to content width.

tolerance

default: 0
type:    integer

Set the number of pixels the iFrame content size has to change by, before triggering a resize of the iFrame.

widthCalculationMethod

default: 'scroll'
values:  'bodyOffset' | 'bodyScroll' | 'documentElementOffset' | 'documentElementScroll' |
         'max' | 'min' | 'scroll' | 'rightMostElement' | 'taggedElement'

By default the width of the page is worked out by taking the greater of the documentElement and body scrollWidth values.

Some CSS techniques may require you to change this setting to one of the following options. Each can give different values depending on how CSS is used in the page and each has varying side-effects. You will need to experiment to see which is best for any particular circumstance.

  • bodyOffset uses document.body.offsetWidth
  • bodyScroll uses document.body.scrollWidth *
  • documentElementOffset uses document.documentElement.offsetWidth
  • documentElementScroll uses document.documentElement.scrollWidth *
  • scroll takes the largest value of the two scroll options
  • max takes the largest value of the main four options *
  • min takes the smallest value of the main four options *
  • rightMostElement Loops though every element in the the DOM and finds the right most point
  • taggedElement Finds the left most element with a data-iframe-width attribute

Alternatively it is possible to add your own custom sizing method directly inside the iFrame, see iFrame Page Options section below.

The rightMostElement option is the most reliable way of determining the page width. However, it does have a performance impact in older versions of IE. In one screen refresh (16ms) Chrome can calculate the position of around 10,000 html nodes, whereas IE 8 can calculate approximately 50. The taggedElement option provides much greater performance by limiting the number of elements that need their position checked.

* The bodyScroll, documentElementScroll, max and min options can cause screen flicker and will prevent the interval trigger downsizing the iFrame when the content shrinks. This is mainly an issue in IE 10 and below, where the mutationObserver event is not supported. To overcome this you need to manually trigger a page resize by calling the parentIFrame.size() method when you remove content from the page.

Callback Methods

closedCallback

type: function (iframeID)

Called when iFrame is closed via parentIFrame.close() or iframe.iFrameResizer.close() methods. See below for details.

initCallback

type: function (iframe)

Initial setup callback function.

messageCallback

type: function ({iframe,message})

Receive message posted from iFrame with the parentIFrame.sendMessage() method.

resizedCallback

type: function ({iframe,height,width,type})

Function called after iFrame resized. Passes in messageData object containing the iFrame, height, width and the type of event that triggered the iFrame to resize.

scrollCallback

type: function ({x,y})

Called before the page is repositioned after a request from the iFrame, due to either an in page link, or a direct request from either parentIFrame.scrollTo() or parentIFrame.scrollToOffset(). If this callback function returns false, it will stop the library from repositioning the page, so that you can implement your own animated page scrolling instead.

IFrame Page Options

The following options can be set from within the iFrame page by creating a window.iFrameResizer object before the JavaScript file is loaded into the page.

<script>
  window.iFrameResizer = {
    targetOrigin: 'http://mydomain.com'
  }
</script>
<script src="js/iframeresizer.contentwindow.js"></script>

targetOrigin

default: '*'
type: string

This option allows you to restrict the domain of the parent page, to prevent other sites mimicing your parent page.

messageCallback

type: function (message)

Receive message posted from the parent page with the iframe.iFrameResizer.sendMessage() method (See below for details).

readyCallback

type: function()

This function is called once iFrame-Resizer has been initialized after receiving a call from the parent page. If you need to call any of the parentIFrame methods (See below) during page load, then they should be called from this callback.

heightCalculationMethod / widthCalculationMethod

default: null
type: string | function() { return integer }

These options can be used to override the option set in the parent page (See above for details on available values). This can be useful when moving between pages in the iFrame that require different values for these options.

Altenatively you can pass a custom function that returns the size as an integer. This can be useful when none of the standard ways of working out the size are suitable. However, normally problems with sizing are due to CSS issues and this should be looked at first.

IFrame Page Methods

These methods are available in the iFrame via the window.parentIFrame object. These method should be contained by a test for the window.parentIFrame object, in case the page is not loaded inside an iFrame. For example:

if ('parentIFrame' in window) {
  parentIFrame.close();
}

autoResize([bool])

Turn autoResizing of the iFrame on and off. Returns bool of current state.

close()

Remove the iFrame from the parent page.

getId()

Returns the ID of the iFrame that the page is contained in.

getPageInfo(callback || false)

Ask the containing page for its positioning coordinates. You need to provide a callback which receives an object with the following properties:

  • iframeHeight The height of the iframe in pixels
  • iframeWidth The width of the iframe in pixels
  • clientHeight The height of the viewport in pixels
  • clientWidth The width of the viewport in pixels
  • offsetLeft The number of pixels between the left edge of the containing page and the left edge of the iframe
  • offsetTop The number of pixels between the top edge of the containing page and the top edge of the iframe
  • scrollLeft The number of pixels between the left edge of the iframe and the left edge of the iframe viewport
  • scrollTop The number of pixels between the top edge of the iframe and the top edge of the iframe viewport

Your callback function will be recalled when the parent page is scrolled or resized.

Pass false to disable the callback.

scrollTo(x,y)

Scroll the parent page to the coordinates x and y.

scrollToOffset(x,y)

Scroll the parent page to the coordinates x and y relative to the position of the iFrame.

sendMessage(message,[targetOrigin])

Send data to the containing page, message can be any data type that can be serialized into JSON. The targetOrigin option is used to restrict where the message is sent to; to stop an attacker mimicking your parent page. See the MDN documentation on postMessage for more details.

setHeightCalculationMethod(heightCalculationMethod)

Change the method use to workout the height of the iFrame.

size ([customHeight],[ customWidth])

Manually force iFrame to resize. This method optionally accepts two arguments: customHeight & customWidth. To use them you need first to disable the autoResize option to prevent auto resizing and enable the sizeWidth option if you wish to set the width.

iFrameResize({
  autoResize: false,
  sizeWidth: true
});

Then you can call the size method with dimensions:

if ('parentIFrame' in window) {
  parentIFrame.size(100); // Set height to 100px
}

IFrame Object Methods

Once the iFrame has been initialized, an iFrameResizer object is bound to it. This has the following methods available.

close()

Remove the iFrame from the page.

moveToAnchor(anchor)

Move to anchor in iFrame.

removeListeners()

Detach event listeners. This is option allows Virtual Doms to remove an iFrame.

resize()

Tell the iFrame to resize itself.

sendMessage(message,[targetOrigin])

Send data to the containing page, message can be any data type that can be serialized into JSON. The targetOrigin option is used to restrict where the message is sent to, in case your iFrame navigates away to another domain.

Troubleshooting

The first steps to investigate a problem is to make sure you are using the latest version and then enable the log option, which outputs everything that happens to the JavaScript Console. This will enable you to see what both the iFrame and host page are up to and also see any JavaScript error messages.

Solutions for the most common problems are outlined in this section. If you need futher help, then please ask questions on StackOverflow with the iframe-resizer tag.

Bug reports and pull requests are welcome on the issue tracker. Please read the contributing guidelines before openning a ticket, as this will ensure a faster resolution.

Multiple IFrames on one page

When the resizer does not work using multiple IFrames on one page, make sure that each frame has an unique id or no ids at all.

IFrame not sizing correctly

If a larger element of content is removed from the normal document flow, through the use of absolute positioning, it can prevent the browser working out the correct size of the page. In such cases you can change the heightCalculationMethod to uses one of the other sizing methods.

IFrame not downsizing

The most likely cause of this problem is having set the height of an element to be 100% of the page somewhere in your CSS. This is normally on the html or body elements, but it could be on any element in the page. This can sometimes be got around by using the taggedElement height calculation method and added a data-iframe-height attribute to the element that you want to define the bottom position of the page. You may find it useful to use position: relative on this element to define a bottom margin or allow space for a floating footer.

Not having a valid HTML document type in the iFrame can also sometimes prevent downsizing. At it's most simplest this can be the following.

<!DOCTYPE html>

IFrame not resizing

The most common cause of this is not placing the iframeResizer.contentWindow.min.js script inside the iFramed page. If the other page is on a domain outside your control and you can not add JavaScript to that page, then now is the time to give up all hope of ever getting the iFrame to size to the content. As it is impossible to work out the size of the contained page, without using JavaScript on both the parent and child pages.

IFrame not detecting CSS :hover events

If your page resizes via CSS :hover events, these won't be detected by default. It is however possible to create mouseover and mouseout event listeners on the elements that are resized via CSS and have these events call the parentIFrame.size() method. With jQuery this can be done as follows

function resize(){
  if ('parentIFrame' in window) {
    // Fix race condition in FireFox with setTimeout
    setTimeout(parentIFrame.size.bind(parentIFrame),0);
  }
}

$(*Element with hover style*).hover(resize);

IFrame not detecting textarea resizes

Both FireFox and the WebKit based browsers allow the user to resize textarea input boxes. Unfortunately the WebKit browsers don't trigger the mutation event when this happens. This can be worked around to some extent with the following code.

function store(){
  this.x = this.offsetWidth;
  this.y = this.offsetHeight;
}

$('textarea').each(store).on('mouseover mouseout',function(){
  if (this.offsetWidth !== this.x || this.offsetHeight !== this.y){
    store.call(this);
    if ('parentIFrame' in window){
      parentIFrame.size();
    }
  }
});

IFrame flickers

Some of the alternate height calculation methods, such as max can cause the iFrame to flicker. This is due to the fact that to check for downsizing, the iFrame first has to be downsized before the new height can be worked out. This effect can be reduced by setting a minSize value, so that the iFrame is not reset to zero height before regrowing.

In modern browsers, if the default height calculation method does not work, then it is normally best to use lowestElement, which is flicker free, and then provide a fallback to max in IE10 downwards.

var isOldIE = (navigator.userAgent.indexOf("MSIE") !== -1); // Detect IE10 and below

iFrameResize({
  heightCalculationMethod: isOldIE ? 'max' : 'lowestElement',
  minSize:100
});

Please see the notes section under heightCalculationMethod to understand the limitations of the different options.

ParentIFrame not found errors

The parentIFrame object is created once the iFrame has been initially resized. If you wish to use it during page load you will need call it from the readyCallback.

<script>
  window.iFrameResizer = {
    readyCallback: function(){
      var myId = window.parentIFrame.getId();
      console.log('The ID of the iFrame in the parent page is: '+myId);
    }
  }
</script>
<script src="js/iframeresizer.contentwindow.js"></script>

PDF and OpenDocument files

It is not possible to add the required JavaScript to PDF and ODF files. However, you can get around this limitation by using ViewerJS to render these files inside a HTML page, that also contains the iFrame JavaScript file (iframeResizer.contentWindow.min.js).

Unexpected message received error

By default the origin of incoming messages is checked against the src attribute of the iFrame. If they don't match an error is thrown. This behaviour can be disabled by setting the checkOrigin option to false.

Width not resizing

By default only changes in height are detected, if you want to calculate the width you need to set the sizeWidth opion to true and the sizeHeight option to false.

Browser compatibility

jQuery version

Basic support works with all browsers which support window.postMessage (IE8+). Some advanced features require the native version polyfil to work in IE8.

Native version

Additionally requires support for Array.prototype.forEach and Function.prototype.bind (IE9+), plus document.querySelectorAll (IE8 Standards Mode). For IE8 force Standards Mode and include the IE8 PolyFils on the host page.

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--[if lte IE 8]>
  <script type="text/javascript" src="js/ie8.polyfils.min.js"></script>
<![endif]-->

Upgrading to version 3

The requirements for IE8 support in version 3 have changed from version 2. If you still require IE8 support than you will need to ensure you include the new ie8.polyfil.js file, as outlined above.

The parentIFrame methods object in the iFrame is now always available and the enablePublicMethods option has been removed. The enableInPageLinks option has been rename to inPageLinks.

Version History

  • v3.6.5 #658 Add .npmignore to project [Sebastian Lamelas].
  • v3.6.4 #651 Fix issue resource leak when iframe removed from the page [Steffen Eckardt]. #651 Make Require.js optional when it is included on the page before iframe-resizer [Dahmian Owen].
  • v3.6.3 #635 Fix issue with undefined ID [Henry Schein]. #582 Add omit option to scrolling config [Matt Ryan].
  • v3.6.2 #596 Add Passive Event Listener for Performance [Henrik Vendelbo]. #613 Check if the iFrameResize function is attached to the prototype of jQuery [Paul Antal]. #620 Fixed an issue where host page fires init before iframe receiver setup [Mark Zhou]. #620 Add removeListeners method to better support React [Khang Nguyen].
  • v3.6.1 #576 Fix race condition caused by react-iframe-resizer removing the domNode and calling close().
  • v3.6.0 #562 Fix issue with debounce getPageInfo when their is more than one iFrame on the page [Thomas Pringle]. #568 Fix bug in Chrome 65 when iframe parent element has display:none set [Steve Hong].
  • v3.5.16 #554 Fix throttling of init event [SHOTA]. #553 Prevents unhandled exception in IE11 [vitoss]. #555 Fix IE PolyFil and make grunt-cli local [Jan Schmidle].
  • v3.5.15 #498 Fix bug "Cannot read property 'firstRun' of undefined" [Shaun Johansen]. [#517] Fix readyState issue in iFrame [lostincomputer].
  • v3.5.14 #477 Fix bug when iFrame closed before first resize.
  • v3.5.13 #473 Improve no response from iFrame warning message.
  • v3.5.12 #475 Delay resizeCallback until after the iFrame has resized [Codener].
  • v3.5.11 #470 Fix jQuery reference error [Russell Schick].
  • v3.5.10 #461 Don't run for server-side render
  • v3.5.9 Show warning message if no response from iFrame. #463 Suppress warning message when code loaded via module [Sergey Pereskokov].
  • v3.5.8 #315 Allow Scrolling to be set to 'auto'.
  • v3.5.7 #438 Check jQuery pluging wrapper not already loaded. #423 Properly remove event listeners [Aaron Hardy]. #401 Make tagged element fall back to all elements if tag not found. #381 Fixing disconnect when iframe is missing temporarly [Jeff Hicken]. Added warnings for missing iFrame and deprecated options.
  • v3.5.5 #373 Add option for custom size calculation methods in iFrame. #374 Fix bug with in page links called from parent page.
  • v3.5.4 #362 Handle jQuery being loaded in odd ways. #297 Ensure document ready before resizing
  • v3.5.3 #283 Added readystatechange event listener.
  • v3.5.2 #314 Add iframeHeight and iframeWidth properties to pageInfo [Pierre Olivier]. #303 Fix issue with IE8 polyFils.
  • v3.5.1 #286 Fixed taggedElement / lowestElement / rightMostElement to calculate correct margin [Dan Ballance].
  • v3.5.0 Recall getPageInfo callback when parent page position changes. Added Array.prototype.forEach to IE8 polyfils.
  • v3.4.2 Only teardown events on close if currently enabled.
  • v3.4.1 #271 Fix bower.json to point to js folder, rather then src [Yachi].
  • v3.4.0 #262 Add getPageInfo method to parentIFrame [Pierre Olivier]. #263 Change leftMostElement to rightMostElement [Luiz Panariello]. #265 Fix issue when no options being passed and added test for this.
  • v3.3.1 Point index.js to the JS folder, instead of the src folder. Added touch event listeners. AutoResize method now returns current state.
  • v3.3.0 #97 Add autoResize method to parentIFrame. Fix bug when setHeightCalculationMethod is called with invalid value. Add interval timer to event teardown. Log targetOrigin*. #253 Work around bug with MooTools interfering with system objects.
  • v3.2.0 Added calculation of margin to LowestElement, LeftMostElement and taggedElement calculation modes. Check callback function is a function before calling it. #246 Fixed issue when scrollCallback changes the page position. #247 Fix rounding issue when page is zoomed in Chrome [thenewguy].
  • v3.1.1 Added readyCallback to iFrame. Create iFrameResizer object on iFrame during setup, rather than waiting for init message to be returned from iFrame. Add ref to iFrame in host page log messages. #245 Fix issue with iFrame not correctly resizing when multiple images are injected into the page [mdgbayly]. #246 Fix issue with including ':' in messages passed to iFrames.
  • v3.1.0 #101 Support async loading of iFrame script. #239 Throttle size checking to once per screen refresh (16ms). Fixed issue with hidden iFrames in FireFox. Improved handling of parent page events. #236 Cope with iFrames that don't have a src value. #242 Fix issue where iFrame is removed and then put back with same ID [Alban Mouton].
  • v3.0.0 Added taggedElement size calculation method. #199 Added in page options to iFrame. #70 Added width calculation method options. Added methods to bound iFrames to comunicate from parent to iFrame. Ignore calls to setup an already bound iFrame. Improved event handling. Refactored MutationObserver functions. Moved IE8 polyfil from docs to own JS file and added Funtion.prototype.bind(). Added detection for tab focus. Fixed bug with nested inPageLinks. Public methods in iFrame now always enabled and option removed. Renamed enableInPageLinks to inPageLinks. Added double iFrame example.
  • v2.8.10 Fixed bug with resizeFrom option not having default value in iFrame, if called from old version in parent page.
  • v2.8.9 #220 Switched from using deviceorientation to orientationchange event listner [Brandon Kobel].
  • v2.8.8 #213 Ensure initCallback fires when iFrame not sized during initialisation. Check autoResize option before resizing from parent. Lower message about resize before initialisation from 'warn' to 'log'. Updated hover example.
  • v2.8.7 #205 Fix race condition when page resized during page init [Ian Caunce]. #203 Added option for checkOrigin to have list of allowed domains for the iFrame [Andrej Golcov]. #202 Handle script being loaded more than once [Nickolay Ribal]. #167 Added WebPack support [Stephan Salat].
  • v2.8.6 #163 Moved window resize event detection from iFrame to parent page. #160 Warn, rather than error, if iFrame has been unexpectantly removed from page. The parentIFrame.close() method nolonger calls resizedCallback().
  • v2.8.5 #173 Scope settings to iFrame. #171 Fixed parentIFrame.close() to work with 0 height iframes [Both Reed Dadoune].
  • v2.8.4 Added switch for inPageLinking support.
  • v2.8.3 Throw error if passed a non-DOM object.
  • v2.8.2 #145 Fixed in page links, to work with HTML IDs that are not valid CSS IDs [Erin Millard]. Moved map files from src to js folder. Added to NPM.
  • v2.8.1 #138 Added option to pass in iFrame object, instead of selector.
  • v2.8.0 #68 Added support for in page links and scrollCallback() function. #140 Added listener for transitionend event [Mat Brown]. Added listeners for animation events. Added listener for deviceorientation event. Improved logging for nested iFrames.
  • v2.7.1 #131 Fix code that works out position of iFrame on host page.
  • v2.7.0 #129 Parse data passed to parentIFrame.sendMessage() into JSON to allow complex data types to be sent to messageCallback().
  • v2.6.5 #107 Added Node support for use with Browserify.
  • v2.6.4 #115 Added parentIFrame.scrollToOffset() method.
  • v2.6.3 #115 Fixed issue with the range check sometimes causing non-resizing messages to be rejected.
  • v2.6.2 #104 Fixed issue with jQuery.noConflict [Dmitry Mukhutdinov].
  • v2.6.1 #91 Fixed issue with jQuery version requiring empty object if no options are being set.
  • v2.6.0 Added parentIFrame.scrollTo() method. Added Tolerance option. #85 Update troubleshooting guide [Kevin Sproles].
  • v2.5.2 #67 Allow lowercase <iframe> tags for XHTML complience [SlimerDude]. #69 Fix watch task typo in gruntfile.js [Matthew Hupman]. Remove trailing comma in heightCalcMethods array #76 [Fabio Scala].
  • v2.5.1 #58 Fixed endless loop and margin issues with an unnested mid-tier iframe. #59 Fixed main property of Bower config file.
  • v2.5.0 Added minHeight, maxHeight, minWidth and maxWidth options. Added initCallback and closedCallback functions (Close event calling resizedCallback is deprecated). Added grow and lowestElement heightCalculationMethods. Added AMD support. #52 Added sendMessage example. #54 Work around IE8's borked JS execution stack. #55 Check datatype of passed in options.
  • v2.4.8 Fix issue when message passed to messageCallback contains a colon.
  • v2.4.7 #49 Deconflict requestAnimationFrame.
  • v2.4.6 #46 Fix iFrame event listener in IE8.
  • v2.4.5 #41 Prevent error in FireFox when body is hidden by CSS [Scott Otis].
  • v2.4.4 Enable nested iFrames (#31 Filter incoming iFrame message in host-page script. #33 Squash unexpected message warning when using nested iFrames. Improved logging for nested iFrames). #38 Detect late image loads that cause a resize due to async image loading in WebKit [Yassin]. Fixed :Hover example in FireFox. Increased trigger timeout lock to 64ms.
  • v2.4.3 Simplified handling of double fired events. Fixed test coverage.
  • v2.4.2 Fix missing 'px' unit when resetting height.
  • v2.4.1 Fix screen flicker issue with scroll height calculation methods in v2.4.0.
  • v2.4.0 Improved handling of alternate sizing methods, so that they will now shrink on all trigger events, except Interval. Prevent error when incoming message to iFrame is an object.
  • v2.3.2 Fix backwards compatibility issue between V2 iFrame and V1 host-page scripts.
  • v2.3.1 Added setHeightCalculationMethod() method in iFrame. Added min option to the height calculation methods. Invalid value for heightCalculationMethod is now a warning rather than an error and now falls back to the default value.
  • v2.3.0 Added extra heightCalculationMethod options. Inject clearFix into 'body' to work around CSS floats preventing the height being correctly calculated. Added meaningful error message for non-valid values in heightCalculationMethod. Stop click events firing for 50ms after size events. Fixed hover example in old IE.
  • v2.2.3 #26 Locally scope jQuery to $, so there is no dependancy on it being defined globally.
  • v2.2.2 #25 Added click listener to Window, to detect CSS checkbox resize events.
  • v2.2.1 #24 Prevent error when incoming message to host page is an object [Torjus Eidet].
  • v2.2.0 Added targetOrigin option to sendMessage function. Added bodyBackground option. Expanded troubleshooting section.
  • v2.1.1 #16 Option to change the height calculation method in the iFrame from offsetHeight to scrollHeight. Troubleshooting section added to docs.
  • v2.1.0 Added sendMessage() and getId() to window.parentIFrame. Changed width calculation to use scrollWidth. Removed deprecated object name in iFrame.
  • v2.0.0 Added native JS public function, renamed script filename to reflect that jQuery is now optional. Renamed do(Heigh/Width) to size(Height/Width), renamed contentWindowBodyMargin to bodyMargin and renamed callback resizedCallback. Improved logging messages. Stop resize event firing for 50ms after interval event. Added multiple page example. Workout unsized margins inside the iFrame. The bodyMargin property now accepts any valid value for a CSS margin. Check message origin is iFrame. Removed deprecated methods.
  • v1.4.4 Fixed bodyMargin bug.
  • v1.4.3 CodeCoverage fixes. Documentation improvements.
  • v1.4.2 Fixed size(250) example in IE8.
  • v1.4.1 Setting interval to a negative number now forces the interval test to run instead of MutationObserver.
  • v1.4.0 #12 Option to enable scrolling in iFrame, off by default. #13 Bower dependancies updated.
  • v1.3.7 Stop resize event firing for 50ms after size event. Added size(250) to example.
  • v1.3.6 #11 Updated jQuery to v1.11.0 in example due to IE11 having issues with jQuery v1.10.1.
  • v1.3.5 Documentation improvements. Added Grunt-Bump to build script.
  • v1.3.0 IFrame code now uses default values if called with an old version of the host page script. Improved function naming. Old names have been deprecated and removed from docs.
  • v1.2.5 Fix publish to plugins.jquery.com.
  • v1.2.0 Added autoResize option, added height/width values to iFrame public size function, set HTML tag height to auto, improved documentation [All Jure Mav]. Plus setInterval now only runs in browsers that don't support MutationObserver and is on by default, sourceMaps added and close() method introduced to parentIFrame object in iFrame.
  • v1.1.1 Added event type to messageData object.
  • v1.1.0 Added DOM MutationObserver trigger to better detect content changes in iFrame, #7 Set height of iFrame body element to auto to prevent resizing loop, if it's set to a percentage.
  • v1.0.3 #6 Force incoming messages to string. Migrated to Grunt 4.x. Published to Bower.
  • v1.0.2 #2 mime-type changed for IE8-10.
  • v1.0.0 Initial pubic release.

License

Copyright © 2013-18 David J. Bradshaw. Licensed under the MIT License.

NPM Greenkeeper badge