Skip to content

Instantly share code, notes, and snippets.

@JasonGhent
JasonGhent / index.js
Created December 11, 2014 15:46
HN Who Is Hiring Filter
/* Removes all non-toplevel comments and toplevel comments older than 24H */
var rows = document.querySelectorAll('table:nth-child(1) tr:nth-child(3) table:nth-child(4) > tbody > tr');
for (var i = 0; i < rows.length; i++) {
var row = rows[i];
var margin = row.querySelectorAll('img')[0];
var width = margin ? margin.getAttribute('width') : '';
width = width ? parseInt(width,10) : '';
if (width === 0) {
var head = row.querySelector('.comhead');
head = head.innerText;