http://qs321.pair.com?node_id=656805


in reply to Re: Perlmonks AJAX Voting (greasemonkey plugin)
in thread Perlmonks AJAX Voting

Maybe I'm wrong, but I see that you are using global xmlHttpReq objects in asynchronous requests. This could lead into problems, because a second (and successive) asynchronous request (i.e. a second vote in the page) will overwrite previous ones if they are not finished and you'll never receive a response from them.

There are some ways of solving this, for example, putting multiple xmlHttpReq objects in an array.

Sorry if I misread your code

citromatik