Hey guy's I am trying to send table information to google spreadsheet.
I have tried:
This worked (but i need table data instead of input)
Is there a way to fix it without using google-script. just pure javascript ?
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>Wick</td>
<td>33</td>
</tr>
<tr>
<td>Jeff</td>
<td>AndersOn</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>33</td>
</tr>
</table>
<button type="submit" onclick="test()" >Verzenden</button>