2
I have an HTML structure of a <table>
where I have a <tr>
with two <td>
with the following structure:
<tr>
<td class="w-25 text-nowrap">
<label><input class="form-check-input" type="checkbox" name="Lindy-125 (Azul)" id="variation_1">Lindy-125 (Azul)</label>
</td>
<td>
<div class="form-check-inline">
<div class="mr-3">
<label> <input class="form-check-input ml" type="checkbox" name="Centro de Caucaia" id="store_1"> Centro de Caucaia</label>
</div>
<div class="mr-3">
<label> <input class="form-check-input ml" type="checkbox" name="Sul de Caucaia" id="store_2"> Sul de Caucaia</label>
</div>
</div>
</td>
</tr>
At first <td>
i have a checkbox field, by the time I mark this checkbox I want to be able to show the next <td>
of the same <tr>
and if it is cleared I hide it. How could I do that?
I tested with jQuery didn’t work out so well.
Where you’re hiding td?
– Sam
I’m still not getting it.
– Romulo Sousa
Currently everything trims on the screen for the user.
– Romulo Sousa