// 1. Go to https://en.wikipedia.org/wiki/Turing_Award // 2. Open a JS console and... // Number of laureates $('.wikitable').children('tbody').children('tr:not(:first-child)').size() // Their names $('.wikitable').children('tbody').children('tr:not(:first-child)').each(function() { console.log( $(this).children('td').first().text() ); })