Reputation: 8113
I'm writing a little web application that has two things in it :
To make the menu appear on top of the iframe in IE, I'm using the jQuery plugin "bgiframe". It works for everything. almost.
From the menu, I mostly call SSRS reports. But, I also call web pages, and in one particular spot I call a PDF file. There is my problem. The PDF renders inline (in the iframe). For that particular control, the bgiframe cannot render my menu on the top of the PDF file.
I have the problem both in IE6, IE7 and IE8. I don't have access to IE9 in the development environment. The problem does not exists in Chrome.
Anyone found a workaround for that?
Thanks
Upvotes: 2
Views: 950
Reputation: 106912
I highly doubt that a workaround is possible, because the PDF viewing plugin is a windowed control - meaning that IE doesn't have control over that area of screen anymore.
Perhaps the latest IE9 might have something, because it has a severely reworked drawing engine, which uses DirectX. But I don't know.
I suggest restructuring your page somehow so that there is no need for an overlap.
Upvotes: 1