This is crude, but might work for you...
$("#someId").click()(function() {
set_timeout(function() {
// stuff to be done 2ms from now
}, 2);
});You might have to play with the set_timeout delay a bit, 2ms might be too short. On Aug 20, 3:47 pm, Tom Worster <[email protected]> wrote: > is there a way to set up a page so that a event handler function is bound to > a DOM object and event but it runs _after_ the browser's default action is > complete?

