Live data from Hacker News

The Single Piece of JavaScript on HN

blog.watchandcode.com

1–10 of 195 posts

Re: The Single Piece of JavaScript on HN

#2

  function hide(id) {
    var el = document.getElementById(id);
    if (el) { el.style.visibility = 'hidden'; }
  }
  function vote(node) {
    var v = node.id.split(/_/);
    var item = v[1];
    hide('up_'   + item);
    hide('down_' + item);
    var ping = new Image();
    ping.src = node.href;
    return false;
  }

Re: The Single Piece of JavaScript on HN

#4

If we ever make it around to a second piece of javascript on here, can I request that it be a collapse comment function? I promise i won't ask for anything else.

https://chrome.google.com/webstore/detail/hacker-news-collap...

I don't know about other browsers, but this works OK on Chrome.

Re: The Single Piece of JavaScript on HN

#9

If we ever make it around to a second piece of javascript on here, can I request that it be a collapse comment function? I promise i won't ask for anything else.

Is there anything like Reddit Enhancement Suite for HN? Any recommendations out there?

https://chrome.google.com/webstore/detail/hackernew/lgoghlnd...
Post reply on HN