[jQuery] find mouse cooridate?

[jQuery] find mouse cooridate?


hi guys,
I'm trying to find the mouse coordinate whenever I right click but it I just
can't get passed this point. Here is my code:
begin: function(){
        var selectors = $("span[@id^=eip-]");
        
        $.each(selectors, function(i) {
            $(selectors[i]).bind("contextmenu", function() {
                
                eip.mouse(window.event); // THIS IS WHERE I'M STUCK
            });
            return true;    
        });
    },
mouse: function(evt){
        alert(
        "clientX value: " + evt.clientX + "\n" +
        "clientY value: " + evt.clientY + "\n"
        );
    },
--
View this message in context: http://www.nabble.com/find-mouse-cooridate--tf2908997.html#a8127350
Sent from the JQuery mailing list archive at Nabble.com.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/