Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Quote:
|
but will parent.functionname() call from an external domain loaded iframe have any impact on the the parent
|
No.
And that for the reason that every navigator out there at this instant prohibit javascript interaction through frames/iframes between 2 different domains.
Your only solution is through AJAX or web services calls between the 2 domains.
Quote:
|
someone told me parent.func() callin may work
|
Yes, but again, only if the 2 frames are located on the same domain.
if you have a document, with an iframe, the main document is referred from the iframe via "parent".
If you have frames, parent from any of the 2 frames refer to the frameset. If you want to access the second frame, you must use
Code:
parent.other_frame_name.yourFunction(a_parameter);
__________________
Only a biker knows why a dog sticks his head out the window.
Last edited by tripy; 08-14-2007 at 04:42 PM..
|