Hello to all javascript coders, mmm i was starting to create now a web 2.0 application something but since i'm novice with javascript i would like to ask if how to replace the value of the <TD> on the table
let say
i have
<table>
<tr>
<td> old value</td>
</tr>
</table>
replace by
<table>
<tr>
<td> new Value</td>
</tr>
</table>
and other thing is how to delete a whole tr with multiple td let say
<table>
<tr>
<td> 2</td>
<td> Product</td>
<td> Description</td>
<td> Price</td>
<td> Edit Link</td>
<td> Delete Link</td>
</tr>
<tr>
<td> 1</td>
<td> Product</td>
<td> Description</td>
<td> Price</td>
<td> Edit Link</td>
<td> Delete Link</td>
</tr>
</table>
let say i want to delete the whole cell on Item#1 without refreshing the whole content.
hope you can share more about it
let say
i have
<table>
<tr>
<td> old value</td>
</tr>
</table>
replace by
<table>
<tr>
<td> new Value</td>
</tr>
</table>
and other thing is how to delete a whole tr with multiple td let say
<table>
<tr>
<td> 2</td>
<td> Product</td>
<td> Description</td>
<td> Price</td>
<td> Edit Link</td>
<td> Delete Link</td>
</tr>
<tr>
<td> 1</td>
<td> Product</td>
<td> Description</td>
<td> Price</td>
<td> Edit Link</td>
<td> Delete Link</td>
</tr>
</table>
let say i want to delete the whole cell on Item#1 without refreshing the whole content.
hope you can share more about it
