How to I get an <iframe> to auto-refresh after 90 seconds?
How to I get an <iframe> to auto-refresh after 90 seconds?
either put such tag in the iframe page:
or use javascript in the parent page:Code:<meta http-equiv="Refresh" Content="90" />
Code:<script language="javascript"> window.setInterval("ReloadFrame();", 90000); function ReloadFrame() { document.frames["MyFrame1"].location.reload(); } </script>
The latter code is what I wanted--I'm using a free external shoutbox, so I can't edit that page. You guys should check it out.
http://www.prosurfacing.com/shout.html
Thanks Shadow.![]()
no problem... nice shoutbox, but for some reason I wasn't able to shout in there.Originally Posted by baseballdude_
![]()
Become Part of This Conversation
Join NowFor Free!
Comments on this post