Hello,
I have a iframe inside the page and I want to redirect parent page of iframe to another page from iframe.
using javascipt it first load page and the redirect to other page.
I want to redirect page to parent address.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Riyaz AkhtarPosted Jul 5, 2013, 6:12 AM
window.top.document.getElementById("formname").submit();
below code to redirect different page
window.top.location.href = "page name";
Iftikar HussainPosted Jul 5, 2013, 5:50 AM
Could please provide your code?
Regards,
Iftikar
Sanjeeb LenkaPosted Jul 5, 2013, 5:48 AM
using javascript:
window.top.location = "http://google.com";
without using javascript
Click here
Click here