• I Want iframe drive URL to open in same window instead of opening in new tab

    BELOW CODE FAILS,PLZ HELP

    <iframe style="width: 100%; height: 600px; border: 0;" src="https://drive.google.com/embeddedfolderview?id=0B1G6FqwZujZFMlNzdWxSZlFCSUU#grid"></iframe>
    
    <iframe src="https://drive.google.com/embeddedfolderview?id=0B1G6FqwZujZFMlNzdWxSZlFCSUU#grid">Your browser does not support iframes.&nbsp;
    
    &nbsp;
    
    </iframe>
    
    <a href="https://wordpress.org" target="iframe_a" rel="noopener noreferrer">https://wordpress.org</a>
    <iframe id="frameA" src="https://drive.google.com/embeddedfolderview?id=0B1G6FqwZujZFMlNzdWxSZlFCSUU#grid" name="frameA"></iframe>
    
    <a href="https://wordpress.org" target="frameA" rel="noopener noreferrer">www</a>
Viewing 1 replies (of 1 total)
  • Use the base tag. Add the following to the head of the page in the iframe:

    <base target="_parent">
    Will load all links on the page in the parent window.

    <base target="_blank">
    This will load in a new window

Viewing 1 replies (of 1 total)

The topic ‘Want iframe to open in same window’ is closed to new replies.