Add column to a table : Table « jQuery « JavaScript DHTML






Add column to a table

    

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
        $('#exampleTable').find('td').each(function(i, el) {
            var inputEl = $(el).children().get(0);
            $(el).before('<td>Added ' + $(inputEl).attr('type') + '</td>');
       });

        
    });
    </script>
  </head>
  <body>
     <form>
     <table id="exampleTable">
     <tr>
        <th>
            Type
        </th>
        <th>
            Element
        </th>
     </tr>
     <tr>
        <td>
            <input type="button" value="Input Button"/>
        </td>
     </tr>
     <tr>
        <td>
            <input type="checkbox" />
        </td>
    </tr>
    </table>
    </form>



  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Change table row background
2.Use for each function to loop through table row
3.Strip a table
4.Toggle Strips
5.To add a special style to table cells that are being hovered over,
6.To toggle a style on table cells:
7.Fade in a table
8.If table row has table data cell
9.Finds all table cell that are empty - they don't have child elements or text.
10.Finds odd table rows, matching the second, fourth and so on
11.Finds the first table row.
12.Finds the third td.
13.Choose the third table cell
14.Remove a table
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