What is the best method for removing a table row with jQuery?
|
You're right:
This works fine if your row has an
If you don't have an |
|||||
|
|
@Eikern If you're gonna use jQuery, use jQuery man!
|
|||
|
|
|
Assuming you have a button/link inside of a data cell in your table, something like this would do the trick...
This will remove the parent of the parent of the button/link that is clicked. You need to use parent() because it is a jQuery object, not a normal DOM object, and you need to use parent() twice, because the button lives inside a data cell, which lives inside a row....which is what you want to remove. $(this) is the button clicked, so simply having something like this will remove only the button:
While this will remove the data cell:
If you want to simply click anywhere on the row to remove it something like this would work. You could easily modify this to prompt the user or work only on a double-click:
Hope that helps...I struggled on this a bit myself. |
|||||||||||||
|
|
You can use:
for finding the parent table row of an element. It is more elegant than parent().parent() which is what I started out doing and soon learnt the error of my ways. --Edit -- Someone pointed out that the question was about removing the row...
As pointed out below you can simply do:
A similar code snippet can be used for many operations such as firing events on multiple elements. |
|||||
|
|
Easy.. Try this
|
|||||
|
|
try this for size
full listing:
|
|||
|
|
Maybe something like this could work as well? I haven't tried doing something with "this", so I don't know if it works or not. |
|||||
|
|
All you have to do is to remove the table row (
*Code above was taken from this jQuery Howto post. |
|||
|
|
|
Try this http://jsfiddle.net/ninadhere/rHvxN/ |
|||
|
|
i think you will try the above code, as it work, but i don't know why it work for sometime and then the whole table is removed. i am also trying to remove the row by click the row. but could not find exact answer. |
||||
|
|
If the row you want to delete might change you can use this. Just pass this function the row # you wish to delete.
|
|||
|
|
|
if you have HTML like this
where you can use something like
So in that case you don't know the class or id of the |
|||
|
|
protected by Community♦ Oct 11 '11 at 10:36
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.