$.each($(".down.arrow"), function(index, vote){ $(vote).click(); });
1. https://github.com/reddit/reddit/wiki/API
Either way, it's probably a good guide to follow if nothing else -- I mean, reddit still has near-daily capacity issues.
So the above could be written:
$(".down.arrow").click();
1. http://jsfiddle.net/k6FvQ/
$.each($(".down.arrow"), function(index, vote){ $(vote).click(); });