With this feature you can add the current url of the iframe to the parent. This enables bookmarkable urls where you go directly to the last page in the iframe. So if someone clicks inside the iframe the new url is added as parameter to the parent url and if you use this url the page in the iframe is not the default one but the one from the parameter. The history api which enables the change of the url is only supported by modern browsers. For older browsers the url is simply not changed. See http://caniuse.com/#search=pushstate.
There are 4 examples for this feature:
- Example 32: Add the url on the same domain
- Example 33: Add the url on the remote domain. This example also shows the feature "Prefix for iframe url" which does reduce the length of the parameter value.
- NEW 2019.7: Example 56: Add iframe url as param: Same domain with hash
- NEW 2019.7: Example 57: Add iframe url as param remote domain with hash + url rewrite