Table of Contents
If you need to prevent user from selecting text or right click use below jquery code and css code
Put below Jquery code in your page
Put below CSS code in your css file
body {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
}