Thread: popup wanted
View Single Post
Old 03-07-2005, 05:47 PM  
Lycanthrope
Confirmed User
 
Lycanthrope's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: Wisconsin
Posts: 4,517
This little bit of code can be useful: will trigger when a surfer clicks anywhere on the page (even blank space) stick it in the heading.

<script language="Javascript">
document.onclick = redirect;
function redirect(evt)
{
var xwin = window.open("http://www.yourpopup.com");
xwin.focus();
return true;
}
</script>
__________________
Lycanthrope is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote