Results 1 to 4 of 4

Thread: Auto Refresh Iframe

  1. #1
    Join Date
    Nov 2009
    Posts
    446

    Auto Refresh Iframe

    Hi
    I have done I program which contains a IFrame, need that the iframe automatically refresh the iframe only. The iframe leads to a .txt file. My iframe code looks something like this.
    Code:
    <iframe name='iframe1' src='/status.txt' frameborder="0" frameborder="0" width='80' height='40'></iframe>
    I want that the iframe should refresh every 5 seconds. So, can any one help me out. Any advice or suggestions on this.

  2. #2
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Auto Refresh Iframe

    Hi
    I think you can try this code.
    Code:
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Untitled Document</title>
    <script language="javascript">
    function reloadf()
    	{
    		document.getElementById('iframe1').src='/status.txt';
    	}
    </script>
    </head>
    
    <body onload="reloadf();">
    <iframe name='iframe1' src='/status.txt' frameborder="0" frameborder="0" width='80' height='40' id="iframe1"></iframe>
    </body>
    Take a look at this code.

  3. #3
    Join Date
    Feb 2008
    Posts
    1,852

    Re: Auto Refresh Iframe

    Hi
    You said that you want the iframe to be refreshed every 5 seconds. I think for that you should try this setInterval(). I have used it and it works very well. check out the below posted.
    Code:
    setInterval("YOUR CODE OR REFRESH FUNCTION();",5000)
    dude if any more problems then do post back again.

  4. #4
    Join Date
    May 2008
    Posts
    2,297

    Re: Auto Refresh Iframe

    Hi
    To refresh the iframe the above posted is good, but you can also use this if you want. Try it and use whatever is easy for you.
    Code:
    <meta http-equiv="refresh" content="5" >
    This part of code will make the iframe to refresh every 5 seconds.

Similar Threads

  1. How Auto Refresh is possible in Excel
    By Sanju Baba in forum Microsoft Project
    Replies: 2
    Last Post: 08-01-2012, 09:22 PM
  2. auto refresh in windows explorer - win 7
    By cuculet in forum Operating Systems
    Replies: 1
    Last Post: 20-04-2011, 12:09 PM
  3. How to Auto refresh web page in firefox 4
    By NigmA DogE in forum Technology & Internet
    Replies: 5
    Last Post: 14-04-2011, 06:19 AM
  4. Windows 7 desktop does not auto-refresh
    By Noah in forum Operating Systems
    Replies: 7
    Last Post: 20-10-2010, 08:20 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,749,880,225.43528 seconds with 16 queries