Banana Cat
New Member
Indoor Football Forum
Posts: 68
inherit
129560
0
Mar 6, 2014 14:02:45 GMT -8
Banana Cat
Indoor Football Forum
68
August 2008
bananacat
|
Post by Banana Cat on Feb 16, 2013 6:16:22 GMT -8
my boardI was using this script before the V5 upgrade: <script type=text/javascript> function refresh() { document.all.iframe1.src = document.all.iframe1.src; } window.setInterval("refresh()",30000); </script>I was specifically using this script in the header of one of my boards called GAMEDAY CENTER to update football scores live for board members. Is there a fix to this script to get it working again or is there some other script I can use? I don't want to refresh the entire page, only the iframe named iframe1. Thanks.
|
|
Banana Cat
New Member
Indoor Football Forum
Posts: 68
inherit
129560
0
Mar 6, 2014 14:02:45 GMT -8
Banana Cat
Indoor Football Forum
68
August 2008
bananacat
|
Post by Banana Cat on Feb 16, 2013 10:25:26 GMT -8
I've tried everything by editing the header for the board, but none of it works. I read somewhere that i need to edit the css, but i don't know where the css is in V5.
|
|
inherit
126477
0
Apr 21, 2023 15:18:52 GMT -8
Shrike
Re-appeared briefly after 6 years only to no doubt disappear again.
1,569
June 2008
shrike
|
Post by Shrike on Feb 16, 2013 11:31:19 GMT -8
Use this, and make sure that it is placed below the iframe.
<script> window.setInterval("reloadIFrame();", 30000);
function reloadIFrame() { document.iframe1.location.reload(); } </script>
|
|
Banana Cat
New Member
Indoor Football Forum
Posts: 68
inherit
129560
0
Mar 6, 2014 14:02:45 GMT -8
Banana Cat
Indoor Football Forum
68
August 2008
bananacat
|
Post by Banana Cat on Feb 16, 2013 21:14:23 GMT -8
Use this, and make sure that it is placed below the iframe. <script> window.setInterval("reloadIFrame();", 30000);
function reloadIFrame() { document.iframe1.location.reload(); } </script> I tried it and it didn't work. Thanks though.
|
|