well I have that problem, im using a lightbox srcipt and im opening an iframe in it so it’s simply iframe. Is there a way to put a link inside of this iframe and open this link in normal window (outside of iframe) ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
<a href="..." target="_top">My Link</a>to put it on top of all other frames (break out)._blank will put in a new window or tab
_parent will put the link in the frame above the current (same as _top if only one level of frame)
Using the name (not id) of a frame will open the link in that frame.
http://www.w3schools.com/tags/att_a_target.asp