up vote 5 down vote favorite
1
share [g+] share [fb]

HI, I've surprisingly found problems, in Chrome browser, in calling window parent javascript functions. If I have a window with a javascript function defined in it

<script type="text/javascript">
  function dolink() {
   . . .
  }
</script>

and I have an iframe inside that window that makes this call using jquery

<script type="text/javascript">
 $(function() {
      $('a.arglink').click(function() {
         window.parent.dolink($(this).attr('href'));
         return false;
      });
 });
</script>

the call to dolink function doesn't work. Stepping with chrome javascript debugger, it appears that window.parent.dolink is undefined. It's by design or a mistake that I made? In Firefox and IE it works fine.

link|improve this question

63% accept rate
Is the iframe on the same domain as the parent document? – Max Shawabkeh Mar 31 '10 at 6:18
yes, on the same domain – Pier Luigi Mar 31 '10 at 9:02
feedback

3 Answers

up vote 3 down vote accepted

Finally found it!

It seems that Chrome browser doesn't permit to reference a parent window accessing pages with the file: protocol. In fact I tested above code with files on my machine, so with a url like file:///C:/mytests/mypage.html . If I put that page in a Web Server, it all works as expected.

link|improve this answer
1  
I have the same issue with chrome, but no file protocol is used, it's pure http – Sloin Feb 19 '11 at 18:05
feedback

you should call code like that

if(function != undefined)
{
 $(function() {
      $('a.arglink').click(function() {
         window.parent.dolink($(this).attr('href'));
         return false;
      });
 });
}
link|improve this answer
feedback

What about using frameElement and ownerDocument

<script type="text/javascript">
 $(function() {
      $('a.arglink').click(function() {
         window.frameElement.ownerDocument.parentWindow.dolink($(this).attr('href'));
         return false;
      });
 });
</script>
link|improve this answer
doesn't work on any browser – Pier Luigi Mar 31 '10 at 8:11
right, forgot something – Alsciende Mar 31 '10 at 8:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.