I have a web app which is loading within an iframe
. I need to display an overlay div to cover the whole page.
The problem is that the overlay is currently displaying only in the iframe
area and not covering the whole page,
(Our application (a child application) is part of a set of applications loading in iframe
)
相关问题
- How to fix IE ClearType + jQuery opacity problem i
- jQuery add and remove delay
- Adding a timeout to a render function in ReactJS
- Include empty value fields in jQuery .serialize()
- Disable Browser onUnload on certain links?
You can do something like this
CSS
Sample
Try something like;
Or you may use JavaScript like;
Hope this helps.