• 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

sequential loading of frames in html

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi ,
i have a frameset in which i have 4 frames . I want these frames namely a,b,c,d to load one after the other on the client window , i.e., firstly frame a should load then b , then c and then d should load . This is urgent . if u know pls explain.
shailja.
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't think your requirement can be done since it's happening in the browser window. But you can do something like this.
In onload of the page load a blank html to all the frames. Then by invoking an action (like onclick() ) you can call other htmls one by one or all at once.

Originally posted by shalu saxena:
hi ,
i have a frameset in which i have 4 frames . I want these frames namely a,b,c,d to load one after the other on the client window , i.e., firstly frame a should load then b , then c and then d should load . This is urgent . if u know pls explain.
shailja.


 
Dilupa Perera
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't think your requirement can be done since it's happening in the browser window. But you can do something like this.
In onload of the page load a blank html to all the frames. Then by invoking an action (like onclick() ) you can call other htmls one by one or all at once.

Or I hope you can use setTimeout(var 1, var2) method to load the pages after a certain time. (I haven't try this before)

Originally posted by shalu saxena:
hi ,
i have a frameset in which i have 4 frames . I want these frames namely a,b,c,d to load one after the other on the client window , i.e., firstly frame a should load then b , then c and then d should load . This is urgent . if u know pls explain.
shailja.


 
shalu saxena
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi dilupa ,
i can not use an onclick for every frame as i have to load an entire page on the browser in frames.
shailja
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic