for arcane reasons I need to be able to cancel the click event via the mousedown event.

Briefly; I am creating a context menu in the mousedown event, however, when the user clicks on the page the context menu should disappear.

I am not able to use the mousedown event over the click in that scenario as I want the user to be able to click links inside the menu ( a full click would never travel to the <a> based menu elements ).

If it is any help, jQuery can be applied.

I would like to either be able to prevent the click event from happening from within the initial mousedown, or be able to pass information to the click event (via originalEvent or otherwise).

TIA

link|improve this question

50% accept rate
perhaps you could provide some //example code to encourage accurate feedback? Thanks. – pixelbobby May 18 '11 at 17:08
the jsfiddle base provided by user759588 seems fairly representative. – unomi May 18 '11 at 17:40
feedback

2 Answers

Seems to be impossible, neither FF nor Opera didnt cancel upcoming click when prevented in mousedown and/or mouseup (as side note: click is dispatched after mouseup if certain conditions met). testcase: http://jsfiddle.net/ksaeU/

link|improve this answer
+1 for trying :) – unomi May 18 '11 at 17:40
I don't care who did what to whom, but folks tit for tat comments and revenge downvoting is not becoming of either your. Please be nice. :) – Kev May 24 '11 at 20:46
Removed downvote. I am sorry for becoming so upset. – Andreas Rejbrand May 24 '11 at 20:48
@Kev♦, just FYI, "don't care" part of "please be nice" call was kinda rude. – Premature Optimization May 24 '11 at 20:55
feedback

Hey, I think this is what you are trying to do with your code. If not, I apologize, I may have misunderstood the question. I used jQuery to get it done: http://jsfiddle.net/jackrugile/KArRD/

$('a').bind({
    mousedown: function(){
        // Do stuff
    },
    click: function(e){
        e.preventDefault();
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.