Pobierz identyfikator tabeli, klikając td, używając jQuery

Mam tr w nagłówku tabeli, który zawiera kilka pól wejściowych.

Czy istnieje sposób, aby przez kliknięcie jednego z tych pól wejściowych uzyskać identyfikator tabeli nadrzędnej?

Mój tr wygląda tak:

<table id="tableID">
    <thead>
        <tr>
            <th><input type="text" name="input1" id="input1" /></th>
            <th><input type="text" name="input2" id="input2" /></th>
            <th><input type="text" name="input3" id="input3" /></th>
        </tr>
    </thead>
    <tbody>
        // ...
    </tbody>
</table>

questionAnswers(4)

yourAnswerToTheQuestion