Tagged Questions

3
votes
5answers
458 views

Jquery First occurrence tree traversal up parents/siblings

What is the best way to get closest (up tree) given a class, but it can be a sibling of a parent. I want to get "errors1" element start with element ".start" <div> ... <div ...
3
votes
1answer
153 views

Adding “this” to the parents stack for “each” in jQuery

This question is a bit of a two-parter. First, the title question. Here's what I've got: // Report all of the parents $(this).parents().each(function(i){ // Collect the parts in a var var ...
2
votes
2answers
24 views

parents and appendto don't work together?

jquery.parents and jquery.appendTo seem don't work together, for instance, I want to add a new element to the clicked button's parent's element only, $('.local').click(function(){ var object ...
2
votes
1answer
50 views

jQuery: Keep .index( ) to return every parents index

In the code below, I am trying to get back the index of the element clicked and if so, its parent index. The problem is that it tries to return, also, its parent's index... By example: if I click on ...
1
vote
5answers
87 views

How to get the parent element value using jquery?

I have a table with a couple of rows with two cells in each row and each cell has couple of info like office name, address and phone number etc. Using jquery for each, the address is being pulled out ...
1
vote
4answers
96 views

.parents().removeClass() not working

i got this javascript, trying to remove a class on a parent element: $(this).parents(".box").removeClass("expanded"); on this html: <div class="box trx"> <a href="javascript:;" ...
1
vote
4answers
68 views

Remove an element from html()?

How can I remove certain element inside html()? For instance, I have this html links, <ul> <li><a href="#" class="string-comment">Comment</a></li> ...
1
vote
2answers
83 views

JQuery get first matching ancestor containing a specific class

I am trying to iterate to the first ancestor containing the class ‘sys-form-row’. I am able to get the row containing class="sys-form-row" using the following: objBack = ...
1
vote
1answer
349 views

jQuery parents (nested divs) change class

I'm trying to learn jQuery I want that, when I hover a children, he changes (rose in the image) the class of parents (XI). I believe that must be something like that $(this).parent().addClass("XI"); ...
1
vote
1answer
161 views

jquery traversing - there has to be a better way than mine!

I'd like to know if someone has a better way to access the elements #type and #type_new based on my html: <tr> <th>Type of Organization</th> <td id="toggle"> ...
0
votes
4answers
35 views

Jquery Closest and Parents Not Working with Input and Nested Divs

I have hidden Divs with ".display-link" classes that are two levels up from an input box. When an input (checkbox) is clicked, it should display the hidden link in the parent's previous sibling's ...
0
votes
3answers
32 views

Weird behavior with .parents() and .closest() when trying to return parent <ul> element id in jQuery

So I've got 2 <ul> containers each with id's. Inside of them are a list of <li> elements. The first <ul> is <ul id="coaches-list">. The second is <ul id="players-list">. ...
0
votes
3answers
61 views

Matching a link's fragment with the url's fragment with jquery?

How can I find the match in a link's fragment with the url's fragment and then highlight the link's parent? HTML, <div class="item"> <a ...
0
votes
3answers
39 views

How can I use parents('ul') to select the nearest/ closest <ul> only?

I have this html, <ul> <li>A <ul> <li><a href="#">1</a></li> <li><a href="#">2</a></li> </ul> ...
0
votes
2answers
222 views

jQuery - How to use parents() to access both 1 and 2 levels up?

I have HTML that looks like this: <fieldset class="vertical-tabs-pane"> <div class="vertical-tab-navigation"> <a class="previous-tab" title="Go back to previous step" ...
0
votes
2answers
372 views

Why does jQuery's parents/closest(selector) functions behave differently in IE8?

I have a jQuery script that works perfectly fine in Chrome 11 and Firefox 4, but it appears to be broken in IE8. It appears to be related to the use of the jQuery parents() function with a selector. ...
0
votes
2answers
125 views

jQuery - trigger toggle on a table element from button in a different table via parents()

I'm trying to toggle (hide/show) a table when clicking a button which is located in a different table, but have trouble selecting it correctly. I intentionnally left id tags out, as I want the jQuery ...
0
votes
1answer
660 views

Jquery: Select full href with a 'contains' method

Is it possible using jQuery to select one full link which href contains another variable? My code is: var element1 = $(".not-viewed").parents('li').attr("id"); var element2 = ...