vote up 1 vote down star
1

Hello. I have a HTML table like this:

<table border="1">
    <tbody>
    <tr>
    		<td><a href="#" class="delete">DELETE ROW</a>COL 1</td>
    		<td><a href="#" class="delete">DELETE COL</a>COL 2</td>
            <td><a href="#" class="delete">DELETE COL</a>COL 3</td>
            <td><a href="#" class="delete">DELETE COL</a>COL 4</td>
            <td><a href="#" class="delete">DELETE COL</a>COL 5</td>
            <td><a href="#" class="delete">DELETE COL</a>COL 6</td>
    	</tr>
    	<tr>
    		<td>ROW 1</td>
    		<td>ROW 1</td>
            <td>ROW 1</td>
            <td>ROW 1</td>
            <td>ROW 1</td>
            <td>ROW 1</td>
    	</tr>
    	<tr>
    		<td>ROW 2</td>
    		<td>ROW 2</td>
            <td>ROW 2</td>
            <td>ROW 2</td>
            <td>ROW 2</td>
            <td>ROW 2</td>
    	</tr>
    </tbody>
</table>

I need a function to remove the specified column when I click on the link with the class "delete". Can you help ?

Thanks.

flag

5 Answers

vote up 7 vote down check

Requires 0 changes to your markup, and updates titles after deletion:

$(document).ready(function(){

  $("a.delete").live("click", function(){
    /* Better index-calculation from @activa */
    var myIndex = $(this).closest("td").prevAll("td").length;
    $(this).parents("table").find("tr").each(function(){
      $(this).find("td:eq("+myIndex+")").remove();
      fixTitles();
    });
  });

});

function fixTitles() {
  $("tr:eq(0) td").each(function(a){
    $(this).html("<a href='#' class='delete'>Delete Row</a> COL " + (a+1));
  });
}

Added Fun

Turn this:

      $(this).find("td:eq("+myIndex+")").remove();
      fixTitles();

Into this:

      $(this).find("td:eq("+myIndex+")").animate({width: "0"}, 1000, function(){
        $(this).remove();
        fixTitles();
      });
link|flag
This delete the row, doesn't delete the column – Daniel Moura Jul 1 at 12:30
No, actually it works. – Manny Calavera Jul 1 at 12:52
Works, yeah. Could be cleaned up a bit though :) – Jonathan Sampson Jul 1 at 13:03
Like the fun part! Adding a .css("white-space", "nowrap") before the .animate({width: "0"} would be nice – Tim Büthe Jul 1 at 13:32
Tim, in my own personal copy I did that. But didn't paste it over :) Definitely makes the animation smoother. – Jonathan Sampson Jul 1 at 13:33
show 14 more comments
vote up 5 vote down

This is how I would do it.

Assign each cell in a column with the same class name. Then with jQuery, remove all tags that have that class name.

link|flag
vote up 2 vote down

A generic way (not tested):

$("a.delete").click(function() {
   var colnum = $(this).closest("td").prevAll("td").length;

   $(this).closest("table").find("tr td:eq(" + colnum + ")").remove();
}

No need to change markup.

link|flag
This is very cool. – Daniel A. White Jul 1 at 12:49
Excellent index-calculation concept. +1 – Jonathan Sampson Jul 1 at 13:02
vote up 1 vote down

jQuery:

   $('.delete').click(function() {
       var colNumber = $(this).parents().find('td').attr('col');
       $('td[col='+colNumber+']').remove();
       return false;
    });

HTML:

<table border="1">
    <tbody>
    <tr>
                <td col='1'><a href="#" class="delete">DELETE COL</a>COL 1</td>
                <td col='2'><a href="#" class="delete">DELETE COL</a>COL 2</td>
            <td col='3'><a href="#" class="delete">DELETE COL</a>COL 3</td>
            <td col='4'><a href="#" class="delete">DELETE COL</a>COL 4</td>
            <td col='5'><a href="#" class="delete">DELETE COL</a>COL 5</td>
            <td col='6'><a href="#" class="delete">DELETE COL</a>COL 6</td>
        </tr>
        <tr>
                <td col='1'>ROW 1</td>
                <td col='2'>ROW 1</td>
            <td col='3'>ROW 1</td>
            <td col='4'>ROW 1</td>
            <td col='5'>ROW 1</td>
            <td col='6'>ROW 1</td>
        </tr>
        <tr>
                <td col='1'>ROW 2</td>
                <td col='2'>ROW 2</td>
            <td col='3'>ROW 2</td>
            <td col='4'>ROW 2</td>
            <td col='5'>ROW 2</td>
            <td col='6'>ROW 2</td>
        </tr>
    </tbody>
</table>
link|flag
vote up 0 vote down

Try this:

    $("a.delete").click(function(){
        var td=$(this).parent();
        var col=$(td).text();
        col=col.substring(col.length-2)*1;
        var f="td:nth-child("+col+")";
        var tbl=$(td).parent().parent();

        $(tbl).find("tr").each(function(){
            $(this).find(f).hide();
        });

Tested in FF3.5.

there is one concern though getting column number. If number of columns excede 2 digits it will not work. It would be better if you put custom attribute and assign it position of column.

   <a class="delete" href="#" col="2">...</a>

remember with nth-child index starts at 1

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.