Hello,
I have a table like below.
I show #block or #villa rows with the Select option.
Example: How to prevent the input in the #block line from being posted when I submit when the #villa line is shown?
<form>
<table>
<tr>
<td><input type="text" name="baslik"></td>
</tr>
<tbody id="blok" style="display:none;">
<tr>
<td><input type="text" name="birsey"></td>
</tr>
</tbody>
<tbody id="villa" style="display:none;">
<tr>
<td><input type="text" name="birsey"></td>
</tr>
</tbody>
<tr>
<td><input type="text" name="icerik"></td>
</tr>
<input type="submit" value="Gönder" name="B1">
</table>
</form>