• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Two Iframe communication

 
Ranch Hand
Posts: 128
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Friends,

I have a quick question for you guys,

I have an application, one jsp which contains two iframes (two different jsp'es ) one contain applet another normal application. what I want to do is

I want to query the applet status from the second iframe, can you please give the code snippet for communicating between the two iframes

Basically I want to call the first iframes(jsp)'s javascript function from the second Iframe(jsp)

please help me on this issue...
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
var foo = parent.getElementById("yourIframeId").theFunctionThatReturns();

Eric
 
Frederik Ericsson
Ranch Hand
Posts: 128
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Eric,

I was not working, I tried it in another way, top.frames['n'].functioname();

Frederik
reply
    Bookmark Topic Watch Topic
  • New Topic