Keluar Window

Copy skrip atau download.
<!-- TWO STEPS TO INSTALL EXIT WINDOW: 

   1.  Paste the coding into the HEAD of your HTML document 
   2.  Copy the onunLoad event handler into the BODY tag  --> 

<!-- STEP ONE: Copy this code into the HEAD of your HTML document  --> 

<HEAD> 

<SCRIPT LANGUAGE="JavaScript"> 

<!-- This script and many more are available free online at --> 
<!-- The JavaScript Source!! http://javascript.internet.com --> 

<!-- Begin 
function leave() { 
window.open('http://yourserver.com/pageopen.html','','toolbar=no,menubar=no,location=no,height=500,width=500'); 

// End --> 
</SCRIPT> 

<BODY onUnload="leave()"> 

<!-- Script Size:  0.64 KB  --> 
 

 
1