Obtenir un identifiant d'élément parent pour envoyer à la fonction javascript

J'ai cette table

<table id="tblId">
        <thead>
            <tr>
                <th>View Name</th>
                <th>View Description</th>                       
            </tr>
        </thead>
            <tbody>
                <tr id="1">
                    <td>Name</td>                    
                    <td><span onclick="jsFunction()">description</span></td>
                </tr>
                <tr id="2">
                    <td>Name</td>                    
                    <td><span onclick="jsFunction()">description</span></td>
                </tr>
            </tbody>
</table>

Dans l'événement onclick de chaque travée j'ai besoin d'envoyer la js fonction de l'id de ligne de ligne spécifique, Comment dois-je faire?

Merci!

source d'informationauteur Ovi