On Jun 20, 2:09 pm, Christian <[EMAIL PROTECTED]> wrote: > Thanks for the suggestion, but still no dice.
Well, I am working around this in a somewhat hackish way... var sayhi = function(e) { alert('hi'); e.halt = true; $('#mybutton').click(saybye); }; var saybye = function(e) { if (e.halt == true) return; alert('bye'); }; I still think that there *must* be a better way, but this is going to get me past this problem for now I suppose. Christian