How to remove a html table row using JQuery

H

How Can We Help?

How to remove a html table row using JQuery

Ensure that the html table row has an id

e.g.

<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.

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me