[jQuery] Finding the next element
I have more table row:
<tr>
<td><div class="clickhere">click</div></td>
</tr>
<tr> // I need to get this
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
I set a click event listener on div inside td (first table row). The
other table rows don't act as an event listener. I need to obtain the
second table row after click. What I need to do ?
Thanks