faqts : Computers : Programming : Languages : JavaScript : Event handling

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 34 people (24%) answered Yes
Recently 3 of 10 people (30%) answered Yes

Entry

Onunload event: Is there a way to know the next entered URL of the browser (Get it as a string)?

Feb 10th, 2003 06:07
Klaus Bolwin, Arie Fishler,


Try this:
<html>
<head>
<title></title>
</head>
<body onunload="alert(ziel);">
<a href="http://www.faqts.com" onclick="ziel=this.href;">link</a>
</body>
</html>