I'm including a page on my site with an iframe. The page in the iframe has the functionality to open a lightbox, which now of course opens in the iframe itself.
Is there a possibility that the iframe content opens the lightbox on the top frame? (On the开发者_Go百科 page that includes this iframe)
if it's opening via javascript, use
window.top.location = "http://destination-url.com";
if it's a anchor link, then add
target="_top":
精彩评论