0

I am using below code to load some content in iFrame.

<html>
<head></head>
<body>
    <div style="position: absolute; overflow: hidden; left: 0px; top: 0px;  width:550px; height:280px;" onClick=onStopRecording();>
        <div style="overflow: hidden; margin-top: -100px; margin-left: -25px;"></div>
        <iframe id="exIframe" src="http://example.com" scrolling="no" frameborder="0"  style="height: 280px; border: 0px none; width: 550px; margin-top: -60px; margin-left: -24px;"></iframe>
    </div>
    </div>
</body>
</html>

Now when I click the URL inside the iFrame, it needs to redirect to that URL and get loaded in main window itself.

But it is loading inside the iFrame.

Please note that I am using third party site inside the iFrame where I can't have access to edit the code

Could you please help?

Thanks in advance.

Sophia Sutter
  • 43
  • 1
  • 6

1 Answers1

3

You need to do it like this:

window.top.location.href = "http://www.google.com";