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");
		}
	}

Recommended Answers

All 2 Replies

Thank u very much friend. these links are very useful for me.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.