Is it possible to show poshytip from iframe so it is also displaying outside of iframe?
Eg. like overflow: visible..
And if not, then how hard would be to display poshytip for parent document and position it relative to my content? What are browser security measures?
NB! Iframe has a fixed height!
Like so:
+----------------------------+
| POSHYTIP |
| |
| |
| |
+--\ /----------------------+
+-------\/---------------------------------------------------------+
| IFRAME BANNER |
| |
| |
+------------------------------------------------------------------+
Cheers!
This is not possible. An iFrame is in essence a separate browser window inside document that references other pages. (As you said, it's an advertisement banner module.)
You'll have to place the tooltip to reference the iframe itself if you want a tooltip.
I think it's possible, but it not straightforward and simple. You can modify/extend the plugin that will appending the tooltip element to window.parent.body. Make it position absolute and calculate the position.
Of course it can be done if both frames/iframes not violates same origin policy.
Unfortunately, it's not possible.
<iframe>
is another separate browser window. It's just a means of 'seeing' inside that web document through your parent document. It's different than a normal in which you can extend elements outside of its margins.
Also, it is considered a security vulnerability for other sites to be able to place content outside their given space.
As already mentioned it is impossible to do what you are asking with an iFrame as it is in essence a separate browser. Have you though about changing the looks/reaction of the banner on hover? You could easily change the banner image and show a little information to the user.
Since this is an ad that from what you have said will be on sites you cannot change, you will not have access to change the page the ad is displayed on; therefore, your ad needs to be completely functional in and of itself.