Home
Developer Blog
Ajax effects
CSS examples
Freelance jobs
Hot IT Jobs
Hot scripts
Code samples
Web hosting directory
Lotus Notes FAQ
See the new scripts recently added to Dynamic Drive.
Click here
.
Original, practical
CSS codes and examples
such as CSS menus for your site.
Search code samples
Keyword
All Categories
ASP
CSS
Dhtml
Html
Javascript
PHP
Code Samples
ASP
CSS
Dhtml
Html
Javascript
PHP
LOGIN HERE
Username
Password
Signup Now
Forgot Password
Verify Signup
Javascript >> General
how can i disable Right Click?
Visitor Ratings (0) :
Description
Add this code segment to your html code between the <Head></Head> tags.
Code
Select All
<script language="Javascript1.2"> message = "Function Disabled!"; function NoRightClick(b) { if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1)) ||((navigator.appName=="Netscape")&&(b.which > 1))){ alert(message); return false; } } document.onmousedown = NoRightClick; // --> </script>
Rate this Resource
0
1
2
3
4
5
6
7
8
9
10