Hi friends
I have used this script for avoid right click in my webpage. I want to disable " savepage as" in file menu. any javascript have for handle this problem. please let me know ur suggestion.
<script language="JavaScript">
document.onmousedown=click;
function click() {
if ((event.button==2)) {
alert("Sorry you didnt access right click");
}
}