How to set td width by jquery? -
i have table width 100%. table can have several cells. how can set cell width jquery. if have 2 td need set them 50%, 50%.
<table> <tbody> <tr> <td></td> <td></td> </tr> </tbody> </table>
please go through documentation.
$('table td').width(value);
Comments
Post a Comment