How to change width of td using jquery
Hi,In my application ,i want display 2 buttons in a td horizondally.
but it is displaying one below other. the td is rendered as follows
<td class="109" >
<input value="Edit" id="edit" type="button">
<input value="Cancel" id="cancel" type="button">
</td>
i tried to change the width as 140px
like
$('.109').width("120px");
but it is not working.
my requirement is to display 2 buttons horizondally in the td
how to solve this
regards
Baiju