spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column10


New Mouse Events

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

A mouse event occurs when you move the mouse or click the left mouse button. When a mouse event occurs, the event object's button property indicates which mouse button (if any) is down.

A dblclick event occurs when the user double clicks an element. In other words, it occurs when the elapsed time between two consecutive onclick events is within a system-defined range. A dblclick event actually occurs at the end of the following sequence:

  1. mousedown
  2. mouseup
  3. click
  4. mouseup
  5. dblclick

You may recall from Column 9 that the click event compiles two separate events: mousedown and mouseup. However, when you press the Enter key on a focusable element, such as a button, a click event occurs without a preceding mouseup event.

Note that for mice with only one button, the button is considered the left mouse button.

The mouseout and mouseover events fire when the mouse cursor moves from one element on the page to another. The event object's fromElement and toElement reflect the element object that the mouse cursor is coming from and going to.

When moving between elements, the first event to fire is mouseout. It is initiated when the mouse cursor leaves the original element. The next event to occur is mousemove, indicating that the mouse cursor has moved. Finally, mouseover fires, indicating that the mouse cursor has entered the new element.

http://www.internet.com

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint


Created: December 30, 1997
Revised: December 30, 1997

URL: http://www.webreference.com/js/column10/newmouseevents.html