Hi
Can anybody help me to disable mouse left click on the page. actually i want to disable mouse left click, so that any body can't copy any content from my site.
Here i am using following code.
<script language="javascript">function noLeftClick()
{
if (event.button==1)
{
//alert('Not allowed')
a;
}
}
document.onmousedown=noLeftClick
script>
This is fine, But how to disable Ctrl+A to select the content.

Lalit MPosted Feb 26, 2010, 2:26 AM
kiran kumarPosted Feb 26, 2010, 1:23 AM
Disable Click on Page
Click anywhere on the page
mark the answer if it helps you
Ravi PanaraPosted Feb 26, 2010, 12:37 AM
hope it works foy you.
adiki geetanjaliPosted Nov 7, 2009, 5:47 AM
this code is not working in Firefox.
Event is not defined is the error.
joakim wireenPosted Apr 28, 2009, 4:12 AM
Keep in mind that this won't be allowed in all browsers. And additionally you can disable most client sided scripting languages.