vote up -1 vote down star

I've used dojo.stopEvent in several places in an application without any problems, except on one page where it never seems to do anything.

dojo.addOnLoad(function(){
    dojo.connect(dojo.byId('btnViewSummary'), 'onclick', dojo.global, 
       function(e){
           dojo.stopEvent(e);
           foo();
    });
});

When I click on btnViewSummary foo() executes but is interrupted by the page unloading as the browser follows btnViewSmummary's link. What's going on?

flag
This question can't be answered in the way that it's currently written. It is likely that something unrelated is causing the problem. – pottedmeat May 28 at 23:53

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.