[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: How to Disable Right Click in browser window using

Subject: RE: How to Disable Right Click in browser window using javascript
From: "iva karr" <iva@xxxxxxxxxxxxx>
Date: Sun, 17 Mar 2002 11:52:21 -0800
disable right click
Disabling the right click in IE 6 is easier, but if you are looking for a
cross-browser solution, try the js bellow.
Note: it's buggy in NS 6 - the right click is caught, but the right click
menu still shows up even though we returned false, there may be a way to
cancel the event bubble, but I haven't spent time looking into this.
----------------------------------------------
<script language=JavaScript>

 var message="foo";
 function click(e) {
 	if (document.all) {
 		if (event.button==2||event.button==3) {
 			alert(message);
 			return false;
		 }
 	}
 	 if
((document.layers)||(window.navigator.userAgent.toLowerCase().indexOf('gecko
') != -1)) {
 		if (e.which == 3) {
 			alert(message);
 			return false;
 		}
 	}
 }

 if
((document.layers)||(window.navigator.userAgent.toLowerCase().indexOf('gecko
') != -1)) {
 	document.captureEvents(Event.MOUSEDOWN);
 }
 document.onmousedown=click;

</script>
----------------------------------------------

Best,
Iva



-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Michael Kay
Sent: Sunday, March 17, 2002 11:14 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE:  How to Disable Right Click in browser window using
javascript


> i want to disable right click of mouse in browsser window
> how can this be done

This is a JavaScript question, not an XSLT question. Once you know what
HTML/JavaScript you want to generate, it should be easy to generate it using
XSLT.

Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.