spacer

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

home / experts / javascript / column10


New Mouse Events

Developer News
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?

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, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage · Working with Ajax Server Extensions
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Wi-Fi Product Watch, November 2009 · Chip Market Recovering From '08 Collapse · Low-Cost Tools to Kickstart Your New Business


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

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