Quantcast
Channel: Techie Corner » Javascripts
Viewing all articles
Browse latest Browse all 9

How to delete table row using jQuery

$
0
0

jqueryI just found out that i’ve been searching for how to delete table row using jquery for many times. Although i manage to find the answer each time, it seems can’t remember the function. So this post will be one of my notes to remind me about this!

To delete table row in jQuery, try the code below:-

  • // html table
      <table>
        <tr id="row_no_1">
          <td>Remove this row</td>
        </tr>
        <tr id="row_no_2">
          <td>Keep this row</td>
        </tr>
      </table>

    // javascript call
     $("#row_no_1").remove();

Viewing all articles
Browse latest Browse all 9

Trending Articles