I have the following table
<table id="mytable"> <tr> <td>name</td> <td> <a id="button1" class="button">link</a> </td> </tr> <tr> <td>name2</td> <td> <a id="button2" class="button">link</a> </td> </tr> </table>
I want to hide the first row of the first column using jQuery, but I'm not sure how to do it, but I managed to do the following (to make the first tr-font italic)
$(document).ready(function() { $("#mytable tr:first").css("font-style", "italic"); });
can anyone help me hide the first button of the first row
early
amuses
source share