![]() |
mail us
|
mail this page products | company | support | downloads | isp services | contact us |
W3C Event Reference. Part of the Events Interface
Stops the event at this function, prevents both further upward bubbling and subsequent mouse related events even in the browser (e.g. right mouse click context menu). You can also stop the right click using the stopPropagation() method.
object.preventDefault()
None
// set up click event handler
window.addEventListener("click", stopit, false);
function stopit(e)
{
if(e.button & 2) // allows multiple buttons
{
// prevent right click context menu
e.preventDefault());
}
}
The function stopit() will be called every time the click event is triggered for the window. If the user has clicked with the right button (right button = 2) we stop the event propagation which prevents the browser from seeing it and hence inhibits output of the context menu. Note: We use & not == in the tests for the right button in case multiple buttons were pressed.
None.
Problems, comments, suggestions, corrections (including broken links) or something to add? Please take the time from a busy life to 'mail us' (at top of screen), the webmaster (below) or info-support at zytrax. You will have a warm inner glow for the rest of the day.
tech home
web stuff
dom stuff
css stuff
language stuff
regex stuff
rfc stuff
protocol stuff
cable stuff
lan wiring
rs232 wiring
howto stuff
survival stuff
wireless stuff
ascii codes
data rate stuff
telephony stuff
mechanical stuff
pc stuff
electronic stuff
tech links
open guides
RSS Feed
If you are happy it's OK - but your browser is giving a less than optimal experience on our site. You could, at no charge, upgrade to a W3C STANDARDS COMPLIANT browser such as Mozilla
W3C HTML 4.01
HTML5 (WHATWG)
W3C Page Validator
W3C DOCTYPE
W3C XHTML Basic
W3C XHTML 1.1
W3C CSS1
W3C CSS2.1
W3C DOM
W3C DOM Events
Gecko DOM
MSIE DOM
usability.gov
W3C -WAI
Web Style Guide
Michael L Bernard
WebAim.org
Peter-Paul Koch
A List Apart
Eric Meyer on CSS
glish.com
DOCTYPE definitions
Our DOM Pages
DOM User Guide
DOM Explorer
DOM Navigation
CSS Short Cuts
CSS Techniques
CSS overview
Oh Really!
webmasterbase.com
Brainjar Menubar
Our Lite JS Menus
Our CSS Menus
Tigra Menus
|
Copyright © 1994 - 2008 ZyTrax, Inc. All rights reserved. Legal and Privacy |
site by zytrax![]() |
web-master at zytrax Page modified: May 24 2007. |