Tagged Questions
1
vote
2answers
48 views
Efficiently find the next visible table row with jQuery
In a table with some rows hidden, I want to get the next visible row, if one exists. This will do the job:
row = $(selectedRow).nextAll(':visible');
if ($(row).length > 0)
selectedRow = row;
...
1
vote
3answers
274 views
Toggle same table-row with 2 different toggle functions
I am attempting to toggle a details row via two different sources.
If the user clicks on either the Name or the AddressAlert, then that specific detail row gets shown or hidden
If the user clicks on ...
1
vote
2answers
3k views
using jQuery toggle function on a table row makes table itself grow
I'm using the jQuery toggle effect hooked to the click() event of 1 table row to toggle the visibility of the next row (which also happens to be the final row in the table). If I click the firing row ...
0
votes
1answer
653 views
jQuery - add / remove table rows
From my selection on the right I dynamically construct (clone) a set of rows to the left. There I also add a REMOVE button. I can't call a jQuery function from that button. Also upon clicking the ...
0
votes
2answers
202 views
jquery: remove table row while iterating through table rows
#exceptions is a html table. I try to run the code below, but it doesn't remove the table row.
$('#exceptions').find('tr').each(function(){
var flag=false;
var val = 'excalibur';
...
0
votes
1answer
126 views
How do I remove a <tr> with jQuery?
Okay, I am really stuck here.
I have a table of tr's that have id's: #tr_xx
where xx is a number.
item is a number.
The if(... part makes sure that what follows is only executed once at the end of ...