Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
203 views

jQuery performance when selecting multiple items

More of a curiosity question...when doing the following: $('.selector1, .selector2').doSomething() Does jQuery fully traverse the DOM twice to get each set of objects matching each selector or is ...
4
votes
3answers
79 views

Removing an element after a div with Jquery

I would like to remove the p tag that directly follows a div using jquery. Here is my HTML: <div class="fbcommentbox"></div> <p>Powered by <a ...
4
votes
6answers
71 views

Get Id from parent

<div rownumber="0" messageid="112" class="post" style="position: relative; top: 0px;"> <div class="post_body">hey hey hey</div> <div class="post_info" style="top: ...
4
votes
4answers
111 views

What is the most efficient way to traverse up in jQuery

I'm trying to close a parent container when an internally nested button is clicked. In my UI -- I have many of these parent containers (I'm rendering preview windows of my product catalogue on a ...
4
votes
3answers
138 views

jQuery parent selectors

Is there a jQuery parent selector that traverses up the DOM until the first match is found? Eg: <tr> <td> <div id="foo">hello!</div> </td> </tr> ...
4
votes
2answers
88 views

Should I use .find(“.foo .bar”) or .children(“.foo”).children(“.bar”)?

When using jQuery for DOM traversal both of these return the same results (I believe): $("whatever").find(".foo .bar") $("whatever").children(".foo").children(".bar") Which is preferable to use?
3
votes
3answers
35 views

What's the difference between .closest() and .parents('selector')?

What's the difference between these? Is one more efficient than the other? I'm a little bit confused to why they both exist. Say I have this markup: <table> <tr> ...
3
votes
4answers
52 views

how to select element that does NOT have a link inside it?

Given this HTML: <ul> <li><a href="/artists/gil_elvgren/activity_stream">Activity Stream</a></li> <li><a ...
3
votes
1answer
81 views

Equivalent of html() method or innerHTML attribute for XMl document

When display a DOM tree I usually use jQuery method html() or DOM attribute innerHTML. However, they both don't work with XML tree. I wonder if there is anything equivalent to these 2 methods for XML ...
3
votes
3answers
92 views

jQuery DOM Traversal

I'm having trouble finding the easiest path to an item using jQuery (although the solution doesn't have to necessarily use jQuery, it's just available as a tool). Here is a simplified code sample: ...
3
votes
3answers
422 views

Add class to group specific div on focus with jQuery

In the following code, I'm trying to make it so that when an input is selected (focused), that the 'formhead' div in the associated fieldset changes its background color, and on blur it changes back. ...
3
votes
2answers
1k views

Javascript-HTML - how to iterate through all the forms on a page?

How can I iterate through all forms in a document using javascript?
3
votes
3answers
3k views

How to select a single child element using jQuery?

Using jQuery how do I select a single child element? I've looked at the Tranversing API and know I can select all the immediate children img elements like this: $(this).children('img'); And to ...
2
votes
4answers
50 views

assign unique id to <input> button and read it using jquery

I have a minor problem, basically I have a hidden input button which is loaded with a unique value from a database table: <input type="hidden" name="ProductId" class="ProductId" ...
2
votes
2answers
39 views

jquery traversing part of a form

If I have a large form and want to traverse only part of it (elements inside div#traverseMe), what would be the best solution to do this. Here is an example form: <form id="form1"> <input ...
2
votes
5answers
131 views

Abap - Traversing the entire nodes of an xml document?

I want to traverse through the entire nodes of an if_ixml_document. which is the best way to do this? Please find the sample document. <text> <id> <guid ...
2
votes
1answer
34 views

jQuery Wrap a div from H2 until last paragraph

I want to wrap a <div> FROM THE BEGINNING of the <H2> up until the next <H2>, but it is only starting on the first paragraph. This is what I have, which ALMOST does the job: ...
2
votes
1answer
280 views

Iterate over dom elements using document.getElementsByTagName, pass element as jquery object

What I need is to iterate over the dom at some start element and then go through all elements below the start element. Here is what I was doing so far. function iterDomFromStartElem = ...
2
votes
6answers
82 views

Multiple Functions Into One

I am trying to take these functions and combine them into one. $(".a h3").click(function() { $(".a .collapse-this").slideToggle("slow"); }); $(".b ...
2
votes
1answer
85 views

Count Table Rows then addClass

I'm trying to addClass to make a link appear when there are 20 table items. I have more than one table on the page, each one is inside of a div.box What I want to do is if there are 20 tr rows ...
2
votes
1answer
85 views

jQuery - Traversing hidden li elements

I am a total jQuery newbie (well web coding newbie come to that) and am excited about how much you can do so easily. I'm totally stuck on this though and would appreciate any help. I have a ul with a ...
2
votes
6answers
208 views

jQuery 1.5 How to find and replace 2 cells in a table with a new table row cell?

I have a table similar to the following. <table class="schedule-table" cellspacing="1" border="0" style="width:100%;"> <tr class="DataRow" id="DataRow_1"> <td ...
2
votes
2answers
245 views

jQuery selector DOM traversal direction and efficiency

What is the standard direction of search for multipart jQuery selectors? e.g. the case $('#myTable tr.selected'); Is the first search for #myTable and then the tr.selected search is only within ...
2
votes
3answers
212 views

how to find <ul> within <li> then add class to <li>

<ul> <li>nav</li> <li>nav</li> <li>nav</li> <li class="how do i addClass here">nav "how to addClass with in this li" <ul> ...
2
votes
3answers
155 views

jquery selector needed to select all certain children of parent

I have a page with some tables on it. In each table the first row is normal but the rest of the rows have a class of hidden so that they are not displayed on load. In one of the cells on the first row ...
1
vote
2answers
37 views

transform dom node recursively using Java

Say I have a dom node like so: org.w3c.dom.Element node: <node id="101"> <node id="102"> <node id="103" /> </node> <node id="104"> <node id="103" ...
1
vote
1answer
49 views

Retrieve all italic text snipets on a page in jQuery and/or javascript

I'm looking to run a script on a page that puts each piece of text that is italicized into an array. As I understand jQuery .find() you can't get items by attributes, am I right?
1
vote
3answers
38 views

finding a li with specific title and removing the rest li

I have a list in which i need to select an element (according to title attr of <a> inside <li>) on page load and remove rest of list elements except the selected one. Using this: ...
1
vote
3answers
54 views

Finding closest previous li

I'm currently trying to select the previous closest list element within an <ul> My current method works if there is > 1 <li> inside of it. html: <ul id="coaches" class="list"> ...
1
vote
3answers
112 views

appendChild Not Working

HTML: <ul id="datalist"> </ul> JavaScript: function add(content){ ul=document.getElementsByTagName("ul"); var li=document.createElement("li"); li.innerHTML=content; ...
1
vote
1answer
31 views

my javascript function is not displaying all validation messages

So if both validations work seperatley (if I just put radio buttons validation in the function without the spinner validation then radio buttons validation works and same vise versa), how come when I ...
1
vote
6answers
68 views

table row if input element consists

There is a table, how I can get tr (table row), if there consists at least one input element. I tried like: $('#tablename:contains(input)').closest('tr'); It doesn't work.
1
vote
1answer
52 views

Changing drop-down selection with jquery

I am trying to figure out how to change the selection of multiple select boxes. Here is what I currently have: function selectStrategies() { $('#dataTable tr').each(function() { ...
1
vote
1answer
95 views

Traverse from element within iframe to parent iframe TAG

I have multiple iframes on the page and need to access the parent Iframe element from the iframe's html element, in order to get the Iframes's height. So from this: var htmlElement = ...
1
vote
3answers
18 views

trouble traversing the DOM

I have some HTML that looks likes this, <dl class="dropdown"> <dt><span>Gender</span><a href="">Go</a></dt> <dd class="shadow_50"> ...
1
vote
0answers
76 views

NodeIterator or TreeWalker objects in JSDOM

I'm trying to use jsdom in node.js to do a small transformation to an HTML document. When doing my client-side tests, I used the document.createTreeWalker and document.createNodeIterator functions, ...
1
vote
1answer
51 views

Limiting a function to the parent div

I have this carousel function: if ($.browser.msie && $.browser.version.substr(0,1)<9) { $("ul.display li:eq(0))").show(); } else { $("ul.display li:first").show(); } $(".viewer ul ...
1
vote
2answers
42 views

Take specific item of the table?

I am with the following function: $ ("# GridView1 tr"). Click (function (e){ var $ cell = $ (e.target). closest ("td"); $ ("# TextBox3"). Val ($ cell.text ()) } ...
1
vote
3answers
110 views

JQuery - Determining parent index from its children

Good morning. I drink some more coffee to compensate the stress with this Javascript/jQuery problem. basically its the opposite thing of this question: Determining child index in it's parent The ...
1
vote
3answers
121 views

How to read values from class name

I have the following table <table> <thead> <tr> <th class="tTle">Mon</td> <th class="tTle">Tues</td> <th ...
1
vote
4answers
202 views

jquery - finding if element is in variable

im trying to find out how to see if an error is returned from an AJAX request. for testing the request always returns <p id="error">test</p> I thought you could do it like this: //html ...
1
vote
4answers
237 views

How can I check if two elements/div belong to the same parent?

Hi I am working on this piece of code for a shopping cart $('.addtoCart').click(function() { //get button id var cartID = $(this).attr("id"); //get check box id var ...
1
vote
3answers
1k views

How to write a simple preorder DOM tree traversal algorithm in jQuery?

I'd like to take the code found here: http://www.jslab.dk/articles/non.recursive.preorder.traversal.part2 // HTML element var root = document.documentElement; recursivePreorder(root); // Recusively ...
1
vote
2answers
483 views

jQuery $.closest() (Or whichever comes first)

While working a project tonight, I ended up using one .js resource file for two different pages. One page contains a textarea within a div, and another contains a textarea within a td. Wanting to work ...
0
votes
2answers
39 views

I'm unable to traverse the DOM from an <img> to a <td>…?

Overview I greatly appreciate any help with this. I'm sure it's "easy" but I can't figure it out. I am having to use selectors to choose a unique image file name. I'm then needing to replace the ...
0
votes
1answer
34 views

Transforming and appending a Dom Node

I am using a function which takes in two DOM Elements - parent and child from different documents. I import the child element, transform it, then append it to the parent element. But, the last line in ...
0
votes
1answer
142 views

ExtJS 4 - Get all components that are descendants of a given Element

What would be the most efficient way to find all ExtJS components that are rendered as descendants of a given HTML Element? Note that this Element is not part of a component itself and is not managed ...
0
votes
1answer
23 views

Using jQuery Validate and adding class to Anscestor

I have this form: <form id="consult-form"> <div class="group"> <label for="pfname">First Name<span>*</span></label> <div class="input"> ...
0
votes
4answers
71 views

How do you access the ui.item children in jQuery?

I'm trying to access the following rectangularized item using the jQuery sortable plugin: Currently my jQuery code looks like this (Note the question is about the even in the receive section): $( ...
0
votes
3answers
41 views

jQuery Failing to Target Children

Any idea why this isn't working? The children of the unordered list are not sliding up like I expect.. http://jsfiddle.net/SparrwHawk/vqUgw/3/

1 2