dlowery
02-17-2003, 07:13 PM
Maybe this should be directed to M$ but I thought I'd try here first.
I run an "Adult" site and use a JavaScript to prevent users from dropping onto pages without validation. Works well but Mac users with IE browsers can't seem to get thru....other browsers (Safari and Mozilla) have no probs.
Has anybody experienced this problem? Any comments? Script is below....
<script language="JavaScript" type="text/javascript">
<!--
if (document.referrer == "" || document.referrer.indexOf("adults-only.com") == -1)
window.location = "restricted.html";
-->
</script>
I run an "Adult" site and use a JavaScript to prevent users from dropping onto pages without validation. Works well but Mac users with IE browsers can't seem to get thru....other browsers (Safari and Mozilla) have no probs.
Has anybody experienced this problem? Any comments? Script is below....
<script language="JavaScript" type="text/javascript">
<!--
if (document.referrer == "" || document.referrer.indexOf("adults-only.com") == -1)
window.location = "restricted.html";
-->
</script>