Reputation: 971
On mobile web browser when keyboard springs up it covers up the input fields on this iFrame. Normally content is pushed up but this Iframe is absolutely positioned to cover the whole screen with transparent background. http://learntoad.com/
Upvotes: 1
Views: 518
Reputation: 971
using position:fixed instead of absolute allowed me to create a screen overlay iFrame, I did have to use an event listener messenger to adjust the ZIndex during the time the overlay was displayed and adjust it back after close.
Upvotes: 1