No Select
Man kann keinen Text auf der ganzen Seite markieren oder kopieren.
BBCODE
Code: Alles auswählen
[NoSelect][/NoSelect]
HTML
Code: Alles auswählen
<script type="text/javascript">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>