Is there any way instead of a JS hack where I can post from an iframe to another page outside the iframe?
the iframe is posting data to a 3rd party and ... |
Basically, I have an iframe embedded in a page and the iframe has some javascript routines I need to invoke from the parent page.
Now the opposite is quite simple as you ... |
So I have two documents dA and dB hosted on two different servers sA and sB respectively.
Document dA has some JS which opens up an iframe src'ing document dB, with a ... |
What methods are available to monitor the status of IFRAME page, I know there are security limits but I hope some small notification system is still possible.
My situation is that I ... |
If I have a page with an iframe on it, then there is another iframe in that iframe, do I have to use parent.parent to reach the top frame or is ... |
I have a page with 3 iframes and this page loads a JS file that has
var stayFifty = new Boolean(false);
and a function that changes what it does based on this boolean.
In ... |
I have an iFrame with an external website. I know about the same domain rule, so I am trying to invoke some javascript via the src to the parent. Currently I ... |
|
I want to call a js function from iframe to a parent window
<script>
function abc()
{
alert("sss");
}
</script>
<iframe id=myFrame>
<a onclick="abc();" href=# >Call ...
|
I have a big flaw in my idea and was wondering if anyone could help me. I have a script which I have written that runs on a page nicely. on ... |
Please suggest possible techniques to trigger events in parent page from an iFrame. I tried out url Hashing and using window.postMessage techniques but without any success.
|
Is it possible to get the referrer of an iFrame's parent page with JavaScript in iFrame?
Example: Page A has an iFrame. The iFrames referrer is be page A. But is is ... |
I've just noticed that my JavaScript history control targeted at a iFrame is affecting the parent. The code is:
document.getElementById('iframeid').contentWindow.history.back(-1);
document.getElementById('iframeid').contentWindow.history.forward(-1);
It works fine, until there is nothing to go back or forward in ... |
After some research (even at stackoverflow) I still can't figure out how to do this. parent.method() won't do the trick, nor some other solutions I've tried.
Situation: I have a index.html ... |
how Call function in iframe from its parent?
|
I have a simple HTML page that rotates through several status pages that I display on several tv's around campus. I regularly update the page and the links. Many times the ... |
I'm building a web-based code editor and ran into trouble handling focus.
It's obvious that I need to move into iframe for every editor instance.
However, I'm not sure if it's possible to ... |
I have a parent page with a function coded like this:
function testfunction() {
alert('hi');
}
That page has an iFrame coded like this:
<iframe src="testinside.htm"></iframe>
Testinside.htm has this link that calls the ... |
I have an iframe which is used to generate a PDF from its parent page. The PDF maker (ABCpdf) requires an HTML file which it then converts.
What I do at present ... |
Sorry for the rough title. I have an iframe into my document. I want that on some event the iframe destroys itself becoming the parent (main) document. For example, running the ... |
I want to Pass value from iframe to parent of different domain and port , can i do that if yes than how?
|
I'm aware of the cross-domain issue with iframes accessing the parent's DOM and vice-versa, however I found that the iframe can redirect it's parent to another location. Take a "parent" page ... |
According to this answer:
Invoking javascript in iframe from parent page
I have an iframe that loads a page that has a div with the id flash_container
<iframe src="http://www.remote.com/a.html" id="iframeID">
I placed this code ... |
I've got a parent page, with a child iframe... When clicking on a specific button inside the child iframe, I want a function to trigger as if it were originating from ... |
Hello StackOverflow community,
I was having a problem with my iframe and javascript. Lets say I have an index.html with an iframe in the body. Withing the index.html I have ... |
This is the scenario: we have a x.html page that could be loaded as a "standalone" page or as frame of another page y.html (same domain). Both pages have a function ... |
i have set up a demo which use iframe to include an target webpage for people to add some widgets on it,
but some website has script to detect if it ... |
been struggling with this for some time now, im trying to add a function to the main window from an iframe, but the only way i can get it to work ... |
I have seen some elegant solutions on fetching the parents document from iframe - like e.g. this one. However, I can't make it work - and I didn't think this ... |
I create an object in a document during thje onload event for the body and then later an iframe. I need to have access to that object (with all methods) ... |
Well, you can't do cross-domain cross-window scripting, period. But if you mean that the API in the parent window came from another domain, one thing you could always do is create "helper" functions in the parent that in turn call the API functions. So long as the main parent window and the survey window load from the same domain, you should ... |
print " "; print_r($_POST); print " "; ?> New Document |