How to remove a html table row using JQuery?
|
|
|
|
|
Question: How to remove a html table row using JQuery? Answer:Â Ensure that the html table row has an id eg. <tr id="TABLE_ROW_ID"><td>I want to be removed</td></tr> Now the JQuery code that you will need to remove the table row $('#TABLE_ROW_ID').remove(); If you do not have an id for the table row, try using one of the JQuery selectors available here.
|