Disable right click on browser window doctype html head title
Disable Right Click On browser Window
<!DOCTYPE html>
<head>
<title>Disable Right Click</title>
<script type="text/javascript">
function disableselect(e){
return false;
}
function reEnable(){
return true;
}
//if IE4+
document.onselectstart=...