• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Reload other frame when window is resized

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have two frames, one with frame1 and frame2. When the window is resized the two frames are getting reloaded in Netscape, but the frame2 has buttons which I am not able to click.
If I reload frame2 seperately then the frame is becoming active and I am able to navigate.
I tried with these
<body onresize="parent.frame2.reload()">
also tried with window.location.reload().
Anyone please let me know how to reload frame2 when window is resized.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
put the reload code in the <framset> tag
onresize="parent.FrameName.reload()"
if that does not work then try this
onresize="parent.FrameName.document.location.href=parent.FrameName.document.location.href"
Eric
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic