$("#namn td").click(function() { var Name = $(this).html() console.log(Name) })
<table id="namn"> <tr> <td>Namn Ett</td> </tr> <tr> <td>Namn Två</td> </tr> <tr> <td>Namn Tre</td> </tr> </table>