简体   繁体   中英

How to get an iframe to load in in the front of my page on top of the existing page?

I am trying to have a link to an iframe load a frame on top of my page. Is there a javascript way to do this?

I have this in my code but I want that link to load within my page on top of a google map...

<div>
    <iframe src="/static/flaggingCriteria.html" name="flaggingCriteria" allowTransparency="true" scrolling="no" frameborder="0" >
    </iframe>
</div>

Thanks!

When you say load a frame on top of your page, do you mean a modal window ?

If that is the case Fancy box will let you do that very easily it will let you load iframe into a modal window. http://fancybox.net/

This should work:

<div style="z-index:1000;position:absolute;">
    <iframe src="/static/flaggingCriteria.html" name="flaggingCriteria" allowTransparency="true" scrolling="no" frameborder="0" >
    </iframe>
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM