Recognize reload and enter command

M

myname

How can I understand when auser of the web page pres the reload button
of the web browaser or when he press enter in the line where the
internet address is inserted? I'd like capture this event to manage it.

Thanks,
Marco
 
D

Dietmar Meier

How can I understand when auser of the web page pres the reload button
of the web browaser or when he press enter in the line where the
internet address is inserted?

You can't distinguish reloading from entering an URL, following a link,
or closing the browser window. All of these user actions simply cause
an unload event.

ciao, dhgm
 
M

myname

You can't distinguish reloading from entering an URL, following a link,
or closing the browser window. All of these user actions simply cause
an unload event.
Argh!
In my web page where I use javascript I can see that IE e Mozilla have
different behaviours!

How can I capture the unload event with javascript?

Thank very much,
Marco
 
R

Robert

How can I capture the unload event with javascript?

Here is an example html file. I do not recommend pestering the user
when doing an onunload. New browsers limit what can be down in the
onunload event.

Robert

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>onunload tests</title>
<script type="text/javascript">

function leaving()
{

var newWindow;
newWindow = window.open(
"http://www.yahoo.com",
"debug",
"scrollbars,resizable,location,width=700,height=500");



alert("please come back soon.");
}


</script>
</head>
<body onunload="leaving()">
<p>Let's pester the user when leaving our window.
</p>
</body>
</html>
 

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,774
Messages
2,569,596
Members
45,135
Latest member
VeronaShap
Top