Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<script language="javascript">
function noClick() {
if (event.button==1) {
return false;
alert('You cannot click');
}
}
document.onmousedown=noClick;
</script>
То малко трябва да се чете, и да се вложи мисъл.Само с copy-paste няма да станеkWo_2 каза:еми и това не става
<html><head>
<script type="text/javascript" language="javascript" src="http://www.bestspiral.info/jquery-1.3.2.js"></script>
<script>
$(document).ready(function(){
$('p.bla').mousedown(function(e){
if (e.which!=3){
$(this).hide();
alert('You cannot left click here');
$(this).show('slow');
return false;
}
return true;
});
});
</script>
<style>
p.bla{
color:red;
}
</style>
</head><body>
<p class="bla">tova e klas bla</p>
<p>tova NE E klas bla</p>
</body>
</html>
<div oncontextmenu="alert('ne pipai ti kazah be');return false">ne pipai desniq buton</div>