mail us  |  mail this page

products  |  company  |  support  |  downloads  |  isp services  |  contact us

Tech Info - DOM-2 addEventListener

W3C Event Reference. Part of the Events Interface

addEventListener Method

Adds an event handler function to the specified object (element). The function is automatically supplied with the 'event' object reference. Multiple functions may be registered for the same event on the same object.

Syntax

object.addEventListener(type, function, capture)

Related Stuff

removeEventListener

Parameters

Name Description Notes
type event type in quotes
supported events
click
mousedown
mouseup
mousemove
mouseover
mouseout
NO KEYBOARD methods in DOM-2
abort
blur
change
error
focus
load
reset
resize
scroll
select
submit
unload
DOMCharacterDataModified
DOMAttrModified
DOMNodeInsertedIntoDocument
DOMNodeRemovedFromDocument
DOMNodeRemoved
DOMNodeInserted
DOMSubtreeModified
DOMFocusIn
DOMFocusOut
DOMActivate
function the name of the function to be called
capture ?? ??

Examples

window.addEventListener("mousemove",follow,false);

function follow(e)
{
	v = e.clientX;
	// more code
}

The function follow() will be called every time the mousemove event is triggered anywhere in the browser window. The event object attributes are exposed. In the example we get the X (horizontal) co-ordinate of the event e.g. a mouse click.

Notes:

Gecko only provides mouse buttons for events that trigger the events 'click', 'mousedown', 'mouseup'.



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

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 Icon 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

web zytrax.com



HTML Stuff

W3C HTML 4.01
HTML5 (WHATWG)
W3C Page Validator
W3C DOCTYPE

XHTML Stuff

W3C XHTML Basic
W3C XHTML 1.1
W3C CSS1
W3C CSS2.1

DOM Stuff

W3C DOM
W3C DOM Events
Gecko DOM
MSIE DOM

Usability/Access

usability.gov
W3C -WAI
Web Style Guide
Michael L Bernard
WebAim.org

Jolly Useful

Peter-Paul Koch
A List Apart
Eric Meyer on CSS
glish.com
DOCTYPE definitions

Our Stuff

Our DOM Pages
DOM User Guide
DOM Explorer
DOM Navigation
CSS Short Cuts
CSS Techniques
CSS overview
Oh Really!

Javascript

ECMA-262

Pop-out Menus

webmasterbase.com
Brainjar Menubar
Our Lite JS Menus
Our CSS Menus
Tigra Menus

printer friendly

Print Page

SPF Record Conformant Domain Logo

Copyright © 1994 - 2008 ZyTrax, Inc.
All rights reserved. Legal and Privacy
site by zytrax
Hosted by super.net.sg
web-master at zytrax
Page modified: May 24 2007.