disabling right click menu that appears with options like back
i want to disable the rightclick menu that appears whan i rightclick in iexplore using javascript.I do not want to disable right click but want to disable only right the click menu
I might have misunderstood you but...
...might this fit your needs?
<body oncontextmenu="return false;">
or maybe:
<script language="javascript">
function doThing(){
// do lots of interesting things...
//and return false to suppress the menu
return false
}
</script>
</head>
<body oncontextmenu="return doThing();">
see how you find it.