Kód: Vybrat vše
<script type="text/javascript">
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox
target.style.MozUserSelect="none"
else //All other ie: Opera
target.onmousedown=function(){return false}
target.style.cursor = "default"
}
</script>
pote vložim
Kód: Vybrat vše
<script>
disableSelection(document)
</script>
ale co když chcu blokovat jen čast stranky nebo jen obrazek da se to? skoušel jsem to ružně ale nikdy to nefungovalo...
diky za pomoc