
Text makierung sperren
Mit dieser Funktion lassen sich Texte vor dem kopieren schützen. Das Makieren der Texte wird verhindert.
|
|
<html>
<head>
<script language="JavaScript1.2">
function disableselect(e) {
return false
}
function reEnable() {
return true
}
document.onselectstart = new Function("return
false")
if (window.sidebar) {
document.onmousedown = disableselect
document.onclick = reEnable
}
</script>
</head>
<body>
Das ist ein Blind Text lalala...! Blind!
Ein sehr blinder Text.
</body>
</html>
|
T: 34979 G: 7 H: 10 T: +4 O: 5
|
|