PDA

View Full Version : Help to get code for exit pop up


magicweb
10-29-2008, 09:07 PM
Hi,

I am new to this forum but I see fantastic posts. I need help to know how to generate a code for exit pop-up for list building, which needs to be integrated with my auto responders.

Appreciate your help.:)

SAN_APIIT
10-30-2008, 10:41 AM
what ur looking for is not clear, can u give a example.

If ur trying to open a new window on exit here is the code that ur looking for

Copy the following code to ur head section, change the width and height according to ur needs

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

function leave() {
window.open('http://www.yourserver.com/page-to-open.html','','toolbar=no,menubar=no,location=no,h eight=500,width=500');
}

</SCRIPT>

Replace ur body tag with this

<BODY onUnload="leave()">