how to display the content of an HTML table row in a jQuery dialog?

how to display the content of an HTML table row in a jQuery dialog?

Have the following HTML code:

<body> <table> <tr> <th>Marque</th> <th>Model</th> <th>Name</th> </tr> <tr> <td>HP</td> <td>G480</td> <td>PC-HP-G480</td> </tr> <tr> <td>DELL</td> <td>Latitude</td> <td>PC-Dell-Latitude</td> </tr> </table> </body>

How to display in a jQuery dialog box the content of an entire row by simply clicking on this row? Example: When you click on the second row, a dialog box opens and displays:

Marque: HP 

Model: G-480 

Name: PC-HP-480

Can u send please the jquery code and the changings that may be applied to the html code?

Thanks in advance