Obtener el contenido de una fila de la tabla con un clic del botón

Necesito extraer los detalles de cada columna en mi tabla. Por ejemplo, la columna "Nombre / Nr.".

La tabla contiene una serie de direccionesLa última columna de cada fila tiene un botón que le permite al usuario elegir una dirección listada.

Problema: Mi código solo recoge el primero<td> que tiene una clasenr. ¿Cómo consigo que esto funcione?

Aquí está el bit jQuery:

$(".use-address").click(function() {
    var id = $("#choose-address-table").find(".nr:first").text();
    $("#resultas").append(id); // Testing: append the contents of the td to a div
});

Mesa:

<table id="choose-address-table" class="ui-widget ui-widget-content">
    <thead>
        <tr class="ui-widget-header ">
            <th>Name/Nr.</th>
            <th>Street</th>
            <th>Town</th>
            <th>Postcode</th>
            <th>Country</th>
            <th>Options</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td class="nr"><span>50</span>
            </td>
            <td>Some Street 1</td>
            <td>Leeds</td>
            <td>L0 0XX</td>
            <td>United Kingdom</td>
            <td>
                <button type="button" class="use-address" />
            </td>
        </tr>
        <tr>
            <td class="nr">49</td>
            <td>Some Street 2</td>
            <td>Lancaster</td>
            <td>L0 0XX</td>
            <td>United Kingdom</td>
            <td>
                <button type="button" class="use-address" />
            </td>
        </tr>
    </tbody>
</table>

Respuestas a la pregunta(8)

Su respuesta a la pregunta