As block the right button of mouse ??
Not to see font code.
As block the right button of mouse ??
Not to see font code.
did not understand what do you say is more specific quiz
<---- If Was Useful to You! Please Thank in Side Thanks Button!!!
To edit the settings you click and so go on "Control Panel \ All Control Panel Items" and click the mouse icon and there you see all settings posiveis
BRPara você editar as configurações do mouse e so ir em "Control Panel\All Control Panel Items" e clicar no icone do mouse e lá você ver todas as configurações posiveis
could you be more specific about what you want?
because i couldn't understand you...explain more...that i will try to help you =D
<---- If I helped, click the button thanks!
Can put html code in page
PHP Code:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>jQuery disable right click easily</title>
<script language="javascript" type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script type="text/javascript" language="javascript">
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
</head>
<body>
Sed lacus. Donec lectus. Nullam pretium nibh ut turpis.
Nam bibendum. In nulla tortor, elementum vel, tempor at,
varius non, purus. Mauris vitae nisl nec consectetuer.
Donec ipsum. Proin imperdiet est. Phasellus dapibus semper
urna. Pellentesque ornare, orci in consectetuer hendrerit,
urna elit eleifend nunc, ut consectetuer nisl felis ac diam.
Etiam non felis. Donec ut ante. In id eros.
</body>
</html>
Last edited by witawat; 2012-10-04 at 02:18 AM.
You need can do it with native javascript or use a library as jQuery
PHP Code:
$(document).mousedown(function(e){
if( e.button == 2 ) {
return false;
} else {
return true;
}
});