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
  • Comment on Re^2: Perlmonks AJAX Voting (greasemonkey plugin)

Replies are listed 'Best First'.
Re^3: Perlmonks AJAX Voting (greasemonkey plugin)
by eric256 (Parson) on Dec 13, 2007 at 14:04 UTC

    Thanks for that catch, I updated the code to use local variables, some testing shows that this works now. Guess I never though of anyone voting that fast!


    ___________
    Eric Hodges