Jump to content
Sign in to follow this  
Ratna

Refreshing Browser

Recommended Posts

Hello friends,

 

How can we refresh browser ?(for example in each minute ,second etc)?

I hope, a lot of experts will answer me.

 

Thanks

Share this post


Link to post
Share on other sites

Hello friends,

 

How can we refresh browser ?(for example in each minute ,second etc)?

I hope, a lot of experts will answer me.

 

Thanks

 

Hello,

 

You want to set your browser to refresh every time or you want to make pages like auto referesh in each second or minute ? anyway here is details:

 

To auto referesh in browser, You can include following script in the pages.

 

<script>

function refreshPeriodic()

{

// Reload the page every 10 seconds

location.reload();

timerID = setTimeout("refreshPeriodic()",10000);

}

timerID = setTimeout("refreshPeriodic()",10000);

 

To set your browser to refresh every time or every visit (in the standard browsers):

 

Netscape Navigator:

 

1. From the Edit menu, select Preferences.

2. In the Category list on the left, double-click Advanced.

3. Select Cache.

4. Under Document in Cache is Compared to Document on Network, select Every Time.

5. Select OK to close the dialog box.

 

 

Internet Explorer:

 

1. From the Tools menu, select Internet Options.

2. Under Temporary Internet Files, select Settings.

3. Under Check for newer versions of stored pages, select Every visit to the page.

4. Select OK to close the dialog box.

 

 

Share this post


Link to post
Share on other sites

Hello friends,

 

How can we refresh browser ?(for example in each minute ,second etc)?

I hope, a lot of experts will answer me.

 

Thanks

 

Hello,

 

You want to set your browser to refresh every time or you want to make pages like auto referesh in each second or minute ? anyway here is details:

 

To auto referesh in browser, You can include following script in the pages.

 

<script>

function refreshPeriodic()

{

// Reload the page every 10 seconds

location.reload();

timerID = setTimeout("refreshPeriodic()",10000);

}

timerID = setTimeout("refreshPeriodic()",10000);

 

To set your browser to refresh every time or every visit (in the standard browsers):

 

Netscape Navigator:

 

1. From the Edit menu, select Preferences.

2. In the Category list on the left, double-click Advanced.

3. Select Cache.

4. Under Document in Cache is Compared to Document on Network, select Every Time.

5. Select OK to close the dialog box.

 

 

Internet Explorer:

 

1. From the Tools menu, select Internet Options.

2. Under Temporary Internet Files, select Settings.

3. Under Check for newer versions of stored pages, select Every visit to the page.

4. Select OK to close the dialog box.

 

 

 

 

 

 

#########################################

 

Thanks Roka ji,

I got my solutions.

I am very begineer on JavaScript.

Would u give me some instructions for designing clock using javascript.

 

Hope, u will help me again.

 

Thanks.

Share this post


Link to post
Share on other sites

Hello friends,

 

How can we refresh browser ?(for example in each minute ,second etc)?

I hope, a lot of experts will answer me.

 

Thanks

 

Hello,

 

You want to set your browser to refresh every time or you want to make pages like auto referesh in each second or minute ? anyway here is details:

 

To auto referesh in browser, You can include following script in the pages.

 

<script>

function refreshPeriodic()

{

// Reload the page every 10 seconds

location.reload();

timerID = setTimeout("refreshPeriodic()",10000);

}

timerID = setTimeout("refreshPeriodic()",10000);

 

To set your browser to refresh every time or every visit (in the standard browsers):

 

Netscape Navigator:

 

1. From the Edit menu, select Preferences.

2. In the Category list on the left, double-click Advanced.

3. Select Cache.

4. Under Document in Cache is Compared to Document on Network, select Every Time.

5. Select OK to close the dialog box.

 

 

Internet Explorer:

 

1. From the Tools menu, select Internet Options.

2. Under Temporary Internet Files, select Settings.

3. Under Check for newer versions of stored pages, select Every visit to the page.

4. Select OK to close the dialog box.

 

 

 

 

 

 

#########################################

 

Thanks Roka ji,

I got my solutions.

I am very begineer on JavaScript.

Would u give me some instructions for designing clock using javascript.

 

Hope, u will help me again.

 

Thanks.

 

For clock using javascript you can go with this link: http://www.dynamicdrive.com/dynamicindex6/ I hope you will get there lot of JavaScript code with demos.

 

Welcome...........

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.