Tagged Questions
2
votes
2answers
78 views
jQuery - Focus out on TR
Okay, so I'm making a plugin to allow inline editing of tables in my website, going great so far, I've got most of it done, but I can't seem to get Focusing out of the table right. So if someone is ...
2
votes
5answers
34 views
Highliting a row in jQuery with specific content in a td
So far i can get my code to highlite the specific td, but even better would be to highlite the entire row. Does anyone know how to do this?
var mySearch = 'No';
$('table tbody tr td:contains("' + ...
1
vote
2answers
56 views
How to Display hidden <tr> closest to selected radiobutton's <tr>
I have 3 tables on a page. Each of them contain two table rows.
The first holds a RadioButton. The second is set to display: none. I need to second to display when the RadioButton in that ...
1
vote
2answers
65 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
2answers
111 views
jQuery next() td across table rows
I have designed a custom calendar using html and jQuery. I want to highlight a range of k days (say 2 days) onhover on the start date. Available dates in my calendar are td of class 'available'. This ...
1
vote
2answers
76 views
Jquery navigate to parent <tr>. Issues with using parent() or closest() selectors
I am not able to achieve something that seems so simple. Not sure where I am going wrong. Please advise.
Goal is to highlight a table row is the checkbox corresponding to it is selected. I have ...
1
vote
2answers
149 views
Jquery conflict tr:hover and .addclass in firefox
The .addClass is not working for me in Firefox, it only works if i take off the "background:#f2f2f2;" from the CSS or "class="hovering" out of the tag.
Otherwise this works in all browsers, chrome, ...
1
vote
1answer
223 views
jquery closest tr not getting selected
using jquery 1.6.1
When the check box gets checked or unchecked, i want to change the background color of the row. My closest tr is not getting selected here. I have a working code that i am changing ...
1
vote
2answers
200 views
How do I sort my table and keep alternating background colors while sorting using jquery?
I am having a problem with my table rows background colors once I start sorting columns. When my document loads the code is runs like this:
$('tbody tr:even').css('background-color','#F1F1F1');
...
1
vote
3answers
282 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
4answers
48 views
Having issue with click function for <tr>
HTML
<tr url="domain.com">
<td><input type="checkbox" name="checkbox[]" method="post" value="" class="checkbox" /> </td>
</tr>
JS
...
0
votes
2answers
37 views
jQuery - How to search within a class for a partial match and remove that class only?
Well, I am storing variables inside of a class that will be used for other elements. Might not be the best approach for this, but is easier to do when I grab the element using $("tr").each(function{ ...
0
votes
1answer
26 views
jQuery - Grab all next() up to a certain quantity
Ok, basically, I have an element that I get which happens to be a <tr> element.
But If I find a <td> element with a rowspan that is greater than 1, within any of the <tr> elements, ...
0
votes
2answers
83 views
Move tr by index to a new position
I have a table that has a fixed layout of rows. Each row has unique identifier. When the data is returned from the database it has a different order for the rows in that table. The returned data has ...
0
votes
2answers
46 views
jquery: need help using selector as method
I am trying to select <tr> elements from tables which contain subtables so as to retrieve <tr> elements from the tables only and not the subtables, hence why I cannot use the find() ...
0
votes
1answer
113 views
Jquery table tr:odd problem
I have this js code:
$(".main-vervolg .right .bottom .panes table.grey tbody tr:odd").css("background-color", "#f8f8f8");
And it is working fine but when i have 2 separated tables with the class ...
0
votes
2answers
63 views
How do loop through a table to select a specific table cell on each row using jquery?
I am trying to place text in the 6th table cell of each row of my table. But all I am getting is the first row selected:
$('tbody tr:even td:eq(5)').each(function(){
...
0
votes
1answer
371 views
Datatables Jquery expand / collapse by clicking TR
I am using the jquery datatables plugin and i'd like to have my table expand by clicking TR.
There is an example on their website, which expands and collapses by clicking an image in a column:
...
0
votes
1answer
670 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
208 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 ...