JavaScript
  Home arrow JavaScript arrow Page 6 - Handling events with the DOM - Part III
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVASCRIPT

Handling events with the DOM - Part III
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 12
    2005-05-03

    Table of Contents:
  • Handling events with the DOM - Part III
  • Another creature in an object-based world: the Event object
  • Determining the type of event: the "type" property
  • Targeting objects: determining the target of the event
  • Focusing on keys: determining which key has been pressed
  • The x-y game: determining mouse coordinates
  • Buttons from the bottom: detecting mouse buttons

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Handling events with the DOM - Part III - The x-y game: determining mouse coordinates


    (Page 6 of 7 )

     

    The process of finding mouse position is rather messy and unreliable, because there are six mouse coordinate properties pairs, but they are not really available cross-browser. Due to this fact, most of them are useless for implemented in reliable mouse position detection scripts. The list of properties is shown below:

     

    • clientX, clientY

    • layerX, layerY

    • offsetX, offsetY

    • pageX, pageY

    • screenX, screenY

    • x, y

     

    From the above listed properties, the only ones present in most browsers are "screenX" and "screenY". They give the mouse position relative to the entire computer screen of the user. However, this information is rather useless for implementing within a script, since most of the time we need to know mouse coordinates relative to the document, not the screen itself. So, I’d settle for just using the pairs "clientX, clientY" and "pageX, pageY" to determine mouse position in a cross browser manner. The JavaScript functionthat takes care of that might be coded as follows:

     

    function detectMouseCoordinates(e){

        var posx,posy;

        posx=0;

        posy=0;

        if(!e) var e=window.event;

        if(e.pageX||e.pageY){

              posx=e.pageX;

              posy=e.pageY;

        }

        else if(e.clientX||e.clientY){

              posx = e.clientX + document.documentElement.scrollLeft;

              posy = e.clientY + document.documentElement.scrollTop;

        }

        alert('X='+posx+' Y='+posy);

    }

     

    Once we’ve listed the function, we would call it this way:

     

    document.onmousedown=detectMouseCoordinates;

     

    Please note that in the case of Mozilla and Netscape, the function will be executed whether we’re left or right clicking on the document. If we’re dealing with IE, which supports the "clientX, clientY" properties, we calculate mouse position by first obtaining the coordinates relative to the client area of the browser and then adding the "scrollLeft" and "scrollTop" values, relative to the document element.

     

    As you can appreciate, mouse coordinate detection is quite difficult to do accurately, due to annoying browser inconsistencies.

     

    Our next section deals with mouse button detection. Let’s find out how it can be implemented in our JavaScript functions.

     

    More JavaScript Articles
    More By Alejandro Gervasio


       · This third part of the series shows several examples to tackle the most common...
       · Very helpful. You are an excelltent technical writer. Please submit more!
       · Hi, I'm glad to know that you've found this series helpful. I'm writing more...
       · It helped me finally get a popup menu working.Also made me aware of a completely...
       · Very glad to see that the article has helped you out in the developing...
     

    JAVASCRIPT ARTICLES

    - Using Click Interceptions with a Database-Dr...
    - Using JavaScript Click Interceptions in an I...
    - Using Click Interceptions with JavaScript
    - QuickSort in Action
    - Quicksort
    - Using Mod_Security to Protect Your Server
    - Detecting and Countering Server Intrusions
    - Securing Your Web Server
    - Building a Secure Web Server
    - Protecting the Server
    - Book Review: Learning the Yahoo! User Interf...
    - Dynamically Generate a Selection List in a R...
    - Intergrate DWR into Your Java Web Application
    - Detect Browser Compatibility with the Reques...
    - Using the EXT JS Date Picker Widget






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway
    Stay green...Green IT