I have a html table like this with few columns and several rows like the one below. I want to be able to copy a list of numbers or input data and paste it into one of the columns in one move.
So if i have a list like:
A
B
C
D
How can I copy that entire list of and paste it in the table? the only way i know how to is by copying each letter one by one and putting it into the table so it looks like this
Code:
<table border="1">
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
</table>
A
B
C
D
How can I copy that entire list of and paste it in the table? the only way i know how to is by copying each letter one by one and putting it into the table so it looks like this
Code:
<table border="1">
<tr>
<td>a</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>b</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>c</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"d</td>
<td>column 2 with random txt</td>
</tr>
</table>