Prepare for your Next Interview
This is a discussion on refresh the page using javascript... within the JavaScript forums, part of the Web Development category; Using javascript i want to refresh my page every 2 minutes....Is there any function in javascript ? ------------------- suresh...
|
|||
|
refresh the page using javascript...
Using javascript i want to refresh my page every 2 minutes....Is there any function in javascript ?
------------------- suresh |
| The Following User Says Thank You to psuresh1982 For This Useful Post: | ||
| Sponsored Links |
|
|||
|
Re: refresh the page using javascript...
function reload()
{ window.location.reload(); } this method will reload the page when u call the method.....but not for every two minutes...... the same situation happened for me also ie...to refresh the page every 30 seconds....my friend gave me a piece of code which refreshes every 30 seconds.....but i didn't tried that.....here is that code... i think it may be useful for u...... Last edited by TigerElango : 02-03-2007 at 08:25 AM. |
|
|||
|
Re: refresh the page using javascript...
sorry i don't know why the code is not displayed in the previous reply......... Last edited by TigerElango : 02-03-2007 at 08:29 AM. |
|
|||
|
Re: refresh the page using javascript...
hi elango i can't see the code..can you upload it. don't use "script" tag..you just post the function.
-------------------- suresh |
|
|||
|
Re: refresh the page using javascript...
function refreshPeriodic()
{ location.reload(); timerID=setTimeout("refreshPeriodic()",30000); } timerID=setTimeout("refreshPeriodic()",30000); |
|
|||
|
Re: refresh the page using javascript...
add this
PHP Code:
|
| The Following User Says Thank You to suji For This Useful Post: | ||
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Create High Quality Tables with JavaScript | Lokesh M | JavaScript | 1 | 11-12-2007 02:35 AM |
| problem for search page..? | psuresh1982 | Java | 0 | 12-08-2006 09:57 AM |
| PHP Code to email HTML Page along with PDF Attachment | Shivanna | PHP | 0 | 10-11-2006 05:57 AM |
| Web Page Wizard | Lokesh M | HTML & CSS | 0 | 06-27-2006 11:19 AM |
| Page Designer | Lokesh M | HTML & CSS | 0 | 06-26-2006 08:33 AM |