I have a jQuery function with even.preventDefault() applied to a click on any element with the class 'editable'.

It's not preventing gmail from opening up it sweb interface to send an email, however. It works on systems where default mail behaviour is not set up (the one I was primarily testing on).. not sure about when it's run through Outlook or an actual mail application.

Is there some workaround for this?

$('.editable').not('video, img, textarea').click(function(event) { 
        event.preventDefault();
        loadEditor($(this));
    });

edit: I have also tried with event.stopPropagation(); but it is still going through.

link|improve this question

If the problem is with mailto links, can you just remove the href attribute? – Douglas Aug 28 '11 at 3:55
not eeeasily.. i'm grabbing the value of the href to edit the link properties (this is a jquery editor that uses the same source code from the page situation). i could remove the href and put it somewhere else, but that would take a fair bit of rejigging – Damon Aug 28 '11 at 3:56
actually removing just the 'mailto:' will work.. it has basically the same information. $('a[href^="mailto:"]').each(function(){ this.href = this.href.replace("mailto:",""); }); – Damon Aug 28 '11 at 5:18
feedback

4 Answers

The gmail interface event handling is probably happening in-browser, so try calling event.stopPropagation too.

link|improve this answer
logical... didn't do the trick, though :/ – Damon Aug 28 '11 at 3:43
feedback

try adding return false,

$('.editable').not('video, img, textarea').click(function(event) { 
        event.preventDefault();
        loadEditor($(this));
        return false;
    });

JavaScript: event.preventDefault() vs return false

link|improve this answer
2  
Worth explaining that return false has the effect of also doing event.stopPropagation(); – yahelc Aug 28 '11 at 3:37
no luck with either stopPropagation or return false :/ – Damon Aug 28 '11 at 3:41
feedback

event.preventDefault() works for elements which have default behavior associated to them.

E.g. anchor elements redirect to url set in the href, form submit event submits the form. For such cases event.preventDefault() will stop its behavior.

The issue which you are facing is event bubling, you should use event.stopPropagation() along with (event.preventDefault() or return false).

 $('.editable').not('video, img, textarea').click(function(event) { 
        event.stopPropagation();
        loadEditor($(this));
        return false;
    });
link|improve this answer
feedback
up vote 0 down vote accepted

I'm not sure if there is actually a way to prevent this, none of the event related jQuery commands mentioned in other answers were effective.

For the meantime, I'm removing the 'mailto' part of the link when editing is enabled and it does the job just fine.

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.