JSFiddle - React, Tailwind, and code Playground

by Aakash Chakravarthy

HTML

<input type="text" />
<table>
            <colgroup>
                <col width="20%">
                <col width="20%">
                <col width="20%">
            </colgroup>
            <thead>
                <tr><th>Name</th>
                <th>Code</th>
                <th>Category</th>
                <th>Description</th>

            </tr></thead>
            <tbody>
                        <tr>
                <td><a href="http://www.100zakladok.ru" target="_blank">100zakladok</a></td>
                <td>100zakladok</td>
                <td>Bookmarking Site</td>
                <td>Using the service 100zakladok.ru you can remember all the links to interesting web pages that are found in the network.</td>
            </tr>
                        <tr>
                <td><a href="http://2tag.nl/" target="_blank">2 Tag</a></td>
                <td>2tag</td>
                <td>Tools</td>
                <td>Shorten a long URL and makes a QR Tag of the short URL. Then it is possible to share the QR Tag or the page on an other service by addthis.com. So it is possible to scan the URL by Mobile/GSM.
Or just save/print/mail the QR Tag.</td>
            </tr>
                        <tr>
                <td><a href="http://www.2linkme.com" target="_blank">2linkme</a></td>
                <td>2linkme</td>
                <td>Bookmarking Site</td>
                <td>2linkme offre un servizio per la catalogazione e gestione dei preferiti online. Trascinando il bottone "CATALOGA" nella barra dei preferiti si ha la possibilitÃ&nbsp; di catturare con un solo click del mouse il sito che si sta visualizzando.</td>
            </tr>
                        <tr>
                <td><a href="http://www.a1-webmarks.com" target="_blank">A1-Webmarks</a></td>
                <td>a1webmarks</td>
                <td>Bookmarking Site</td>
                <td>A1-Webmarks is a free service that combines a personal bookmark server with social bookmarking.</td>
           ...

JavaScript

var dd;
$('table td:nth-child(2)').each(function(){
    dd += '"' + $(this).text() + '", ';
});

$('input').val(dd);