[SOLVED] refresh a different iframe once an iframe elsewhere has loaded

This is a discussion on "[SOLVED] refresh a different iframe once an iframe elsewhere has loaded" within the JavaScript Forum section. This forum, and the thread "[SOLVED] refresh a different iframe once an iframe elsewhere has loaded are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jan 25th, 2008, 01:15
Up'n'Coming Member
Join Date: May 2007
Location: northern nsw, au
Age: 27
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
[SOLVED] refresh a different iframe once an iframe elsewhere has loaded

hi there, I am wondering how to refresh an iframe, once another iframe on the page has finished loading (without having to click an additional button).

any ideas? seems this is a common problem I've found over the web with not many answers.
Reply With Quote

  #2 (permalink)  
Old Jan 25th, 2008, 01:50
Up'n'Coming Member
Join Date: May 2007
Location: northern nsw, au
Age: 27
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
Re: refresh a different iframe once an iframe elsewhere has loaded

the iframe's id is 'lister' and I've also tried putting this at the top of the iframe I want to send the refresh command from...
Code: Select all
<script type="text/javascript">
document.getelementbyid("lister").location.reload;
</script>
......................

PROBLEM SOLVED =>
Code: Select all
<script type="text/javascript">
window.parent.lister.location.reload()
</script>
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Refresh iFrame once this process has completed... cosmicbdog PHP Forum 6 Jan 25th, 2008 03:38
Resizeable iframe Lassjus Web Page Design 18 Jun 7th, 2007 12:59
Can a jsp file in an IFrame calls a javascript function outside of the IFrame jadeite100 JavaScript Forum 0 May 31st, 2007 14:29
iFrame targeting websky_miki Web Page Design 2 Mar 4th, 2006 22:00
<iframe> u2orange Web Page Design 10 Nov 29th, 2003 20:06


All times are GMT. The time now is 11:32.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43