Sometimes we have requirement to disable Right Click context menu and Text selection of a web page from the user, so that the user cannot use the right click default context menu and also to disable text selection so that sensitive data could not be copied from the website.
To Disable Context Menu
document.oncontextmenu = function(){return false;};
If you just place this line in your page under script tag, the context menu will get disabled.
To Disable Text Selection
document.onselectstart= function() {return false;};
This will disable Selection in IE. For Mozilla we need to apply CSS to the body element.
-moz-user-select: none;This will disable selection in Mozilla.
You can also disable selection for a single container. For instance :
<div onselectstart="return false;"
style="-moz-user-select: none;">
This will disable selection of Text for the container.
Hope this will help you.
Did you like his post?
Oh, lets go a bit further to know him better.
Visit his Website :
www.abhisheksur.com to know more about Abhishek.
Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook
Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.
Presently he is working in WPF, a new foundation to UI development, but mostly he likes to work on architecture and business classes. ASP.NET is one of his strength as well.
Have any problem? Write to him in his
Forum.
You can also mail him directly to
abhi2434@yahoo.com
Want a Coder like him for your project?
Drop him a mail to
contact@abhisheksur.com
Visit His Blog
Dotnet Tricks and Tips
Dont forget to vote or share your comments about his Writing