You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.0 KiB
Plaintext

Kein Javascript
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
if (navigator.cookieEnabled) cookie = "Cookies enabled.";
else cookie = "Cookies disabled.";
document.write(cookie)
//-->
</SCRIPT>
<noscript>
<a href="ohne.htm">hier gehts weiter ohne Javascript</a>
</noscript>
Rechte Maustaste verhindern
<script language="JavaScript">
<!--
function DoFalse(){alert('Nicht möglich!'); return(false)}
if(document.layers)
{
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=DoFalse();
}
//-->
</script>
...
<body onMouseDown="return DoFalse();">
Frameset aktiviveren
if(self == top){window.location.href = 'frameset.htm';};
STRG Taste ausschalten
<script language="JavaScript">
<!--
function DoFalse(e)
{
if((window.event && window.event.ctrlKey == true) ||
(e && e.modifiers == 2))
{
alert('Nicht möglich!'); return false;
}
}
if(document.layers)
{
document.captureEvents(Event.KEYPRESS);
document.onKeyPress = DoFalse;
}
//-->
</script>
...
<body onMouseDown="return DoFalse();" onKeyPress="return DoFalse();">