Fixes z-index issues in IE6.
Arguments:
| options (Optional) | Options | |
|---|---|---|
| A set of key/value pairs that configure the background iframe. All options are optional. | ||
Options:
| Name | Type | |
|---|---|---|
| top | String or Number | Default: "auto" |
| The iframe must be offset to the top by the width of the top border. This should be a negative number representing the border-top-wide. If a number is used here, pixels will be assumed. Otherwise, be sure to specify a unit. A CSS expression could also be used. By default the value is "auto" which will use a CSS expression to get the border-top-width if it is in pixels. | ||
| left | String or Number | Default: "auto" |
| The iframe msut be offset to the left by the width of the left border. This should be a negative number representing the border-left-width. If a number is used here, pixels will be assumed. Otherwise, be sure to specify a unit. A CSS expression could also be used here. By default the value is "auto" which will use a CSS expression to get the border-left-width if it is in pixels. | ||
| width | String or Number | Default: "auto" |
| This is the width of the iframe. If a number is used here, pixels will be assumed. Otherwise, be sure to specify a unit. A CSS expression could also be used. By default the value is "auto" which will use an expression to get the offsetWidth. | ||
| height | String or Number | Default: "auto" |
| This is the height of the iframe. If a number is used here, pixels will be assumed. Otherwise, be sure to specify a unit. A CSS expression could also be used. By default the value is "auto" which will use an expression to get the offsetHeight. | ||
| opacity | boolean | Default: true |
| This is a boolean representing whether or not to use opacity. If set to true, the opacity will be set to 0. If set to fale, the opacity filter is not applied. Default is true. | ||
| src | String | Default: "javascript:false;" |
| This setting is provided so that one could change the src of the iframe to whatever they need. Default is "javascript:false;" | ||
