JSFiddle - React, Tailwind, and code Playground

by roelvd

HTML

<table class="grid" style="display:none;"><!--AdSense grid content --></table>

JavaScript

$(function() {
    $('.grid > tbody > tr:not(.header-row)').each(function() {
        var description = $(this).find('td:nth-child(2)').find('a:first').text();
        var channel = $(this).find('td:nth-child(3)').find('div').text();
        $('body').append(description + ' (' + channel + ')<br />');
    });
});