Dreamer
03-30-2002, 04:07 PM
I have javascript popup which is activated for all surfers except those from certain sites. Those sites are defined with this code:<br /><br />var console=true;<br />if (document.referrer.indexOf('eutopiamovies.com') > -1) { exit = false; }<br />if (document.referrer.indexOf('jizzhut.com') > -1) { exit = false; }<br />if (document.referrer.indexOf('ramis-movies.com') > -1) { exit = false; }<br />if (document.referrer.indexOf('dailymoviepost.com') > -1) { exit = false; }<br /><br />Does someone know what line should I add into this so people which are comming from bookmarks also don't get popup when they exit site?<br /><br />Thanks.