Given this HTML:
<html>
<body>
<table>
  <tr>
    <td>Copy This Text</td>
    <td><button type="button">Copy</button></td>
  </tr>
</table>
</body>
</html>
When the user clicks on that button, how can I copy the the text from first TD tag to clipboard? 
 
     
     
    