Forum Moderators: open
While
document.getElementById('x').onkeyup = foo;
may get you the double click problem,
bar = {};
bar.onkeyup = function(event) { do something };
document.getElementById('x').onkeyup = bar.onkeyup;
seems to be a satisfactory solution.
Not sure of the reasons...
We've talked about it here a couple [webmasterworld.com] times [webmasterworld.com] before.
Thanks for giving us an update on a workaround devonreed! :D