Suppress Browser Alert

T

tertullian

I have a page that tries to forward the page using javascript every
minute. However, I have to write it so that if the computer were to
lose internet connection it would appear to the user as though nothing
has changed and try to refresh again in a minute. I have everything
working except for if the computer loses internet connection it throws
up a browser error that the page cannot be reached. Is there anyway to
suppress that browser alert message with javascript or some other
option? The code I am use looks like this:

try {
window.location.href="nextpage.html";
}
catch(err) {
reset the counter
}

As I said the counter itself works. The problem is that it pops up the
alert and I can't have it do that. It needs to appear as though
nothing has happened to the user.

Any thoughts?
 
R

RobG

tertullian said:
I have a page that tries to forward the page using javascript every
minute. However, I have to write it so that if the computer were to
lose internet connection it would appear to the user as though nothing
has changed and try to refresh again in a minute. I have everything
working except for if the computer loses internet connection it throws
up a browser error that the page cannot be reached. Is there anyway to
suppress that browser alert message with javascript or some other
option? The code I am use looks like this:

try {
window.location.href="nextpage.html";
}
catch(err) {
reset the counter
}

As I said the counter itself works. The problem is that it pops up the
alert and I can't have it do that. It needs to appear as though
nothing has happened to the user.

Any thoughts?

There is a Jim Ley tutorial here on XMLHttpRequest that includes how to
determine if a URL is available or not:

<URL: http://jibbering.com/2002/4/httprequest.html#HEAD >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,995
Messages
2,570,230
Members
46,816
Latest member
SapanaCarpetStudio

Latest Threads

Top