Remove a table : Table « jQuery « JavaScript DHTML






Remove a table

 



<html>
  <head>
    <script type='text/javascript' src='js/jquery-1.3.2.js'></script>
    <script type='text/javascript'>
$(document).ready(
  function() {
    $('input#tmpEmptyTable').click(
      function($e) {
        $e.preventDefault();
        $('td').empty();
      }
    );

    $('input#tmpDelete').click(
      function($e) {
        $e.preventDefault();
        $('h4, table').remove();
      }
    );
  }
);
    </script>

  </head>
  <body>
     <h4>C Albums</h4>
     <table>
       <thead>
         <tr>
           <th>Title</th>
           <th>Year</th>        
         </tr>
       </thead>
       <tbody>
         <tr>
           <td>D</td>
           <td>1980</td>
         </tr>
       </tbody>
     </table>
     <input type='submit' id='tmpEmptyTable' value='Empty Table' />
     <input type='submit' id='tmpDelete' value='Delete Content' />
  </body>
</html>

   
  








Related examples in the same category

1.Add column to a table
2.Change table row background
3.Use for each function to loop through table row
4.Strip a table
5.Toggle Strips
6.To add a special style to table cells that are being hovered over,
7.To toggle a style on table cells:
8.Fade in a table
9.If table row has table data cell
10.Finds all table cell that are empty - they don't have child elements or text.
11.Finds odd table rows, matching the second, fourth and so on
12.Finds the first table row.
13.Finds the third td.
14.Choose the third table cell
15.Empty all table data
16.Clone table row
17.Table data hover
18.Append to table body
19.Add table row to table body
20.Append value to table body