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?
