UPDATE: I've posted this, with changes and additions, as a meditation, so please see it there.

If that were the case, why aren't the voting option on bottom of the node? You know, so you click them after you read them.

They are in my browser, thanks to this bit of jQuery code that I insert into PM pages with a browser extension (you also need to insert a line of HTML to load jQuery itself). It's probably not the best code, as I understood very little Javascript when I wrote it; I've been meaning to clean it up and add a couple things, but it does work. (Note how I put sigils on my variables to make it feel more perl-y). It moves each reply's vote buttons to the bottom of that reply, and also sticks a Vote button next each set of +/- radio buttons, so I don't have to scroll to the bottom to find it. It doesn't move the buttons for the original post at the top; I guess that's one thing I should add.

$(document).ready(function(){ jQuery('div.reputation center').append('<input style="margin-left:20 +px" type="submit" name="sexisgreat" value="vote!" />'); jQuery('td.reply-body').each(function(){ var $m = $(this).children().first(); var $t = $m.html(); if( $t.match(/reply/)){ return; } $m.remove(); $(this).append('<div class="reputation">'+$t+'</div>'); }); });

Aaron B.
Available for small or large Perl jobs and *nix system administration; see my home node.


In reply to Re^3: Can I please have multiple downvotes per (certain monk's) posts. by aaron_baugher
in thread Can I please have multiple downvotes per (certain monk's) posts. by BrowserUk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.