I\'ve discovered what seems to be a bug in how the MS AJAX library interacts with FireFox -- but maybe I\'m just doing it wrong. I\'ve got a script that looks something like th
Well, I don't know what the problem is with Function.createCallback, but I was able to fix it by using an anonymous method instead:
var callback = function () { dowork(request) }; setTimeout(callback, 1000);
Close enough for government work.