active questions tagged selectors - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:04:43Z http://stackoverflow.com/feeds/tag/selectors http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1836697/jquery-apply-selector-to-every-field-in-a-dynamic-form 0 jQuery. Apply selector to every field in a dynamic form Enrique 2009-12-02T23:47:16Z 2009-12-03T00:01:53Z <p>I have a form which is built dynamically using this jQuery plugin </p> <pre><code>http://code.google.com/p/jquery-dynamic-form/ </code></pre> <p>When I duplicate a <strong>div</strong>, all the fields in the <strong>div</strong> are duplicated, and -as plugin docs state- <strong>brackets</strong> are added to the field name</p> <p>I use also jQueryUI. I use the datePicker plugin</p> <pre><code>$("#myDynDateField").datepicker(); </code></pre> <p>It works fine when there's only 1 instance of this datePicker field. When I duplicate the whole div, the datePicker field is also duplicated, and errors begin</p> <pre><strong> inst is undefined uncaught exception: Missing instance data for this datepicker </strong></pre> <p>1) How can I use a jQuery selector that covers all the duplicated fields also?<br> 2) How can I make sure that every duplicated datePicker field will have its right instance, etc.?</p> <p>Thanks a lot in advance,</p> http://stackoverflow.com/questions/250688/count-immediate-child-div-elements-using-jquery 5 count immediate child div elements using jQuery Don 2008-10-30T15:47:52Z 2009-12-02T16:17:23Z <p>Hi,</p> <p>I have the following HTML node structure:</p> <pre><code>&lt;div id="foo"&gt; &lt;div id="bar"&gt;&lt;/div&gt; &lt;div id="baz"&gt; &lt;div id="biz"&gt; &lt;/div&gt; &lt;span&gt;&lt;span&gt; &lt;/div&gt; </code></pre> <p>How do I count the number of immediate children of "foo", that are of type "div". In the example above, the result should be two ("bar" and "baz").</p> <p>Cheers, Don</p> http://stackoverflow.com/questions/1829174/stacking-css3-structural-pseudo-classes 0 Stacking CSS3 Structural pseudo-classes Dustin Hansen 2009-12-01T21:49:12Z 2009-12-02T08:53:34Z <p>While practicing different scenarios in which CSS3 pseudo-classes and selectors might come in handy, I ran across something I just can't figure out!</p> <p>Here's the situation. I want to modify the <code>:first-of-type::first-letter</code> of the first non-empty paragraph for a block of text. I'm not sure that pseudo-classes can be stacked though. Here's what I've come up with (Doesn't work, of course)</p> <pre><code>.article-body &gt; p:not(:empty):first-of-type::first-letter { ... } </code></pre> <p>Given the following markup:</p> <pre><code>&lt;div class="article-body"&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;The "T" in this paragraph should be the one effected.&lt;/p&gt; &lt;/div&gt; </code></pre> <p>The only guess I can come up with is that pseudo-classes (ie; :not() and :first-of-type) can not be stacked upon each other. Which is odd since you can stack pseudo-elements upon each other, and other pseudo-classes...</p> <p>Any ideas for how this can be accomplished?!</p> http://stackoverflow.com/questions/1829508/jquery-append-th-class-to-td-in-the-same-column 1 jQuery - Append <th> Class to <td> in the Same Column Norbert 2009-12-01T22:52:01Z 2009-12-01T23:31:50Z <p>I've been searching all over the net for hours now but I still can't figure this out.</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;th class="name"&gt;Name&lt;/th&gt; &lt;th class="age"&gt;Age&lt;/th&gt; &lt;th class="nick"&gt;Nick&lt;/th&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;John&lt;/td&gt; &lt;td&gt;30&lt;/td&gt; &lt;td&gt;Johnny&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Robert&lt;/td&gt; &lt;td&gt;35&lt;/td&gt; &lt;td&gt;Bob&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Is there any way to append the classes from those headers to the TD tags in the same column?</p> http://stackoverflow.com/questions/995433/jquery-selector 0 Jquery selector Jasim 2009-06-15T10:37:40Z 2009-12-01T03:21:47Z <pre><code>&lt;a class='leftpanel_anchor' tag='solutions' href='javascript:void(0)' &gt; Solutions to &lt;span class='leftpanel_keywords'&gt;firstConResult&lt;/span&gt;&lt;/a&gt; </code></pre> <p>i have an anchor like this. i want to select the content inside span class 'leftpanel_keywords'. how can i do that with jquery???</p> http://stackoverflow.com/questions/1411143/jquery-selector-performance 2 jQuery selector performance JonoW 2009-09-11T14:15:34Z 2009-11-30T21:51:23Z <p>I'm having huge variations in performance depending on how I express my selectors. For example, look at these 2 selectors, which select exactly the same elements:</p> <pre><code>A) someTableRow.find("td.someColumnClass").find("span.editMode").find("input") B) someTableRow.find("td.someColumnClass span.editMode input") </code></pre> <p>I would expect to B) to be faster as there is only 1 call, but in fact I'm finding A) executes around 8 times faster. I have no idea why, anyone have any insight? Thanks</p> http://stackoverflow.com/questions/1817407/tips-to-reference-dom-elements-working-with-jquery 0 Tips to reference DOM Elements working with jQuery Omar 2009-11-30T01:06:16Z 2009-11-30T12:20:14Z <p>Need some Advice on how to reference elements with jQuery (DOM/Traversing/Selectors). Sometimes its just enough to set an id at the desired element and do this:</p> <pre><code>$('#elementID').hide(); </code></pre> <p>But sometimes it just cant be used, for example when working with list of n elements, i have seen some people attach a class to each element of the list like:</p> <pre><code>&lt;a class="selectMe" href="http://jquery.com/"&gt;jQuery1&lt;/a&gt; &lt;a class="selectMe" href="http://jquery.com/"&gt;jQuery2&lt;/a&gt; &lt;a class="selectMe" href="http://jquery.com/"&gt;jQuery2&lt;/a&gt; </code></pre> <p>And then do this with jQuery:</p> <pre><code>$('.selectMe').hide(); </code></pre> <p>Some other do the same but with rel attribute and so on..</p> <p>Some other people do this so generic that is scary, if this is the scenario:</p> <pre><code>&lt;div id="MyID"&gt; &lt;span&gt;Some Text Here&lt;/span&gt;&lt;a href="http://jquery.com/"&gt;jQuery1&lt;/a&gt; &lt;/div&gt; </code></pre> <p>If i Want to attach an event to the anchor:</p> <pre><code>$('#MyID a').show(); </code></pre> <p>Like assuming that there will be just 1 link inside that DIV.</p> <p>What you guys think it really depends totally on the scenario or there are some good practices to do this.</p> http://stackoverflow.com/questions/1818382/return-type-of-input-with-jquery 0 return type of input with jquery kris 2009-11-30T07:50:35Z 2009-11-30T08:37:50Z <p>I have a form with dynamically created form elements.</p> <p>I need to get the value of each element, and send an ajax request to make sure the data is ok (the easy part). I can get each elements value easy enough, but the problem comes in with radio buttons. For example:</p> <pre><code>&lt;input type = 'radio' class = 'form_element' value = '1'&gt; &lt;input type = 'radio' class = 'form_element' value = '1'&gt; &lt;input type = 'radio' class = 'form_element' value = '1'&gt; </code></pre> <p>if i do something like...</p> <pre><code>$('.form_element').each(function(){ alert($(this).val()); }); </code></pre> <p>it will print the values of all of the radio buttons, regardless if it is checked or not.</p> <p>I need it to only return the value of the one that is checked.</p> <p>So, is there a way to return the type of an input element from jquery? </p> http://stackoverflow.com/questions/1817792/css-previous-sibling-selector 0 CSS previous sibling selector Jourkey 2009-11-30T04:06:36Z 2009-11-30T04:29:38Z <p><code>~</code> is for the next sibling. Is there an equivalent for the previous sibling? </p> <p>If there is not, a succinct no would suffice. :)</p> http://stackoverflow.com/questions/54877/jquery-after-selector-question 3 jQuery "after" selector question Chris Farmer 2008-09-10T18:03:12Z 2009-11-30T02:08:09Z <p>I can't seem to figure out a good way to do this, but it seems like it should be simple. I have an element that I want to append a div to. Then I have another element that I want to clone and shove into that intermediate div. Here's what I was hoping to do:</p> <pre><code>$("#somediv &gt; ul").after("&lt;div id='xxx'&gt;&lt;/div&gt;").append($("#someotherdiv").clone()); </code></pre> <p>This seems to be close, but not quite there. The problem with this is that the "append" seems to be operating on the original "#somediv > ul" selector. This sort of makes sense, but it's not what I wanted. How can I most efficiently select that intermediate div that I added with the "after" and put my "#someotherdiv" into it?</p> http://stackoverflow.com/questions/1817444/prototype-how-to-dynamically-construct-selector 0 Prototype: how to dynamically construct selector? frodosghost 2009-11-30T01:25:23Z 2009-11-30T01:58:47Z <p>I am having a little bit of difficulty passing a variable into a selector in prototype. I would like to be able to pass a variable into the select string, so that one function can work for many of the same kind.</p> <p>At the moment, this is what I would basically like to do:</p> <pre><code>function myFunct(var) { $(var + 'add_form').hide() //so inde the brackets would be ('#product1 #add_form') for example. } </code></pre> <p>Be able to pass 'var' into the function that would pass it to the selector, so that I can hide a pattern that is the same for many on the page.</p> <p>Any ideas for a path to follow would be greatly appreciated.</p> http://stackoverflow.com/questions/940752/jquery-selectors-finding-a-child-of-the-root-node 0 jquery selectors -- finding a child of the root node morgancodes 2009-06-02T17:16:21Z 2009-11-30T01:53:16Z <p>It seems that this should be simple, but I'm having trouble figuring out how to construct a selector that will return only elements that are a direct child of a root node.</p> <p>If, for example, I have a reference to a div (myDiv), and I want to select only images that are direct children of that div, the following doesn't work:</p> <pre><code>jQuery("div &gt; img", myDiv); </code></pre> <p>The "div" in the selector doesn't seem to match the root of the context, only descendants, and without a selector that will give me the root, I can't use ">". Any other ideas on how to select a direct child of a context root?</p> http://stackoverflow.com/questions/1218068/what-is-the-difference-between-jquerys-space-and-selectors 2 What is the difference between jQuery's space and > selectors? Eliyahu 2009-08-02T03:19:01Z 2009-11-30T01:49:09Z <p>What's the difference between the <a href="http://docs.jquery.com/Selectors/descendant#ancestordescendant" rel="nofollow">space</a> and <a href="http://docs.jquery.com/Selectors/child" rel="nofollow">></a> selectors? And possibly related, how can I look for something that's the direct child of something else, and not lower down the descendant line?</p> http://stackoverflow.com/questions/1814217/nscfset-objectatindex-unrecognized-selector-iterating-works 0 NSCFSet objectAtIndex unrecognized selector, iterating works. Nick 2009-11-29T00:08:35Z 2009-11-29T00:15:19Z <p>Hey guys,</p> <p>I was wondering how it can be that iterating through an NSMutableArray works, but when I call objectAtIndex it fails with "*** -[NSCFSet objectAtIndex:]: unrecognized selector sent to instance 0x..."</p> <p>Here is some sample code, the program is too big to share in whole so I hope it's enough. The code is executed in the latest iPhone Simulator from XCode. </p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { RDLogString(@"Creating cell @ row no. %d", indexPath.row); CPPlayerAppDelegate * appDelegate = [[UIApplication sharedApplication] delegate]; RDLogString(@"Conversations: %p. Item count: %d", appDelegate.distribution.conversations, appDelegate.distribution.conversations.count); //This works for(CPConversation * x in appDelegate.distribution.conversations){ RDLogString(@"Pointer: %p with name %@", x, x.name); } //This fails with aforementioned error CPConversation * conversationAtCurrentIndex = [appDelegate.distribution.conversations objectAtIndex: indexPath.row]; </code></pre> <p>Sorry for the bad formatting, still figuring it out. :)</p> <p>Thanks in advance, Nick</p> http://stackoverflow.com/questions/1811786/jquery-syntax-question-ul-as-variable-remove-item 0 jQuery syntax question : ul as variable, remove item? Pselus 2009-11-28T06:37:29Z 2009-11-28T06:45:17Z <p>This is a simple syntax question.</p> <p>I have a ul saved as a variable like this:</p> <pre><code>$list = $("#city_list"); </code></pre> <p>I am later removing some items from the list with this code:</p> <pre><code>$('ul#city_list li#city_' + $id).remove(); </code></pre> <p>How can I do that using the $list variable I created earlier so that I get something like this:</p> <pre><code>$list.('li#city_' + $id).remove(); </code></pre> http://stackoverflow.com/questions/1806445/cancelling-queued-performselectorafterdelay-calls 0 cancelling queued performSelector:afterDelay calls eerok512 2009-11-27T01:51:38Z 2009-11-27T02:47:31Z <p>hey there all, does anybody know if it is possible to cancel already queued selector events from the event stack or timer stack or whatever mechanism it is that is utilized by the API when you call performSelector:withObject:afterDelay?</p> <p>I was using this event stack to alter the attributes of an image within a TabBar tab, and would sometimes queue up to 10 seconds worth of changes in one quickly executed for loop... maybe 5 milliseconds or so.</p> <p>the problem arises if the user switches tabs... like say I have the image alterations queued for an image that is displayed as soon as Tab #4 is enabled, and then the user quickly switches to Tab #3 and then right back to Tab #4... this would then re-queue another 10 seconds worth of alterations while the old queue was still playing, probably around 2 or 3 seconds in to the queue if switched quick enough... but even arriving at 5 seconds in to the stream was a problem.</p> <p>so I needed some way to cancel the old stack of changes before putting a new stack on...</p> <p>I'm writing this query in the past tense because I already came up with an alternative solution to this problem by adding a hawk-eyed event filter on the playback function. however I am still curious if event cancellation is possible, because I have a feeling such knowledge will come in handy in the future. thank you for any assistance rendered :)</p> http://stackoverflow.com/questions/902839/jquery-select-divs-with-same-id 1 jquery select divs with same id mark 2009-05-24T01:16:53Z 2009-11-26T18:48:04Z <p>hei guys i want to select two divs with the same id in jquery. how do i do it?</p> <p>i tried this and it did not work</p> <pre><code>jQuery('#xx').each(function(ind,obj){ //do stuff; }); </code></pre> <p>i have jquery countdown timers in a page, and i update them via ajax. some of these countdown timers repeat and that is why i need to use the same id on the divs.</p> http://stackoverflow.com/questions/1802053/looping-through-set-of-elements-in-jquery 0 looping through set of elements in jquery unknown (google) 2009-11-26T07:23:26Z 2009-11-26T07:38:48Z <p>Hi, $('form td .hint p') this jquery selector returns back a list [p,p,p,p,p,p].</p> <p>I would like to know what's the best way to loop through each of those, check their css values, and do something if the css value = something I want.</p> <p>I have this function to show and hide a tooltip, but I only want one tooltip to be shown at a time. While doing mouseover and mouseout works, it's buggy because currently I'm using parent(), next(), and child(), to find the right element, and jquery instantaneously inserts a div wrapping around the element I'm showing and hiding. So basically I'm trying to force all other p elements that have display:block to hide every time mouseover occurs.</p> <p>Currently doing this: target = $('form td .hint p'); target[0].css('display') gives an error.</p> <p>target.css('display') seems to only return the css of the first one.</p> <p>Thanks</p> http://stackoverflow.com/questions/1796479/zend-framework-forms-and-jquery-selectors-how-to-select-by-id 1 Zend framework forms and jQuery selectors - how to select by... ID? rochal 2009-11-25T11:55:49Z 2009-11-25T12:04:27Z <p>So I've got this issue with forms generated by Zend Framework.</p> <p>As we know Zend is using this format for ID of HTML elements, i.e: <code>contactDetails[name]</code>,<code>contactDetails[email]</code> etc.</p> <p>First of all, why Zend is using <em>invalid</em> HTML to generate forms? There should be no brackets <code>[]</code> inside ids, according to <a href="http://www.w3.org/TR/html401/types.html#type-name" rel="nofollow">W3C</a>:</p> <blockquote> <p>ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").</p> </blockquote> <p>But the real issue I have is <strong>how to correctly select element by id using jQuery, if we must deal with invalid, Zend generated ids</strong>?</p> <p>In standard JavaScript this seems to work: <code>document.getElementById('contactDetails[email]')</code>.</p> <p>But in jQuery: <code>$('#contactDetails[email]')</code> - this is obviously wrong, as brackets are reserved for attribute selectors.</p> <p>The easy workaround I found is to wrap native-js-selected object in $() function: <code>$(document.getElementById('contactDetails[email]'))</code>. Using this method I can use all jQuery functions on this object, but this seems like a hacky solution...?</p> http://stackoverflow.com/questions/1793216/css-selector-syntax 0 CSS Selector Syntax Byran 2009-11-24T21:58:11Z 2009-11-24T22:14:10Z <p>For this HTML:</p> <pre><code>&lt;div id="idName" class="className"&gt; ... &lt;/div&gt; </code></pre> <p>I know this is correct selector syntax:</p> <pre><code>div.className {...} div#idName {...} </code></pre> <p>By mistake I did:</p> <pre><code>#idName.className {...} </code></pre> <p>It seams to work but I don't think it's valid. Can anyone confirm if this is valid?</p> <h2>Edit:</h2> <p>To clarify, this id will be on many pages and, depending on the use of the page, may have different classes.<br> Page A:</p> <pre><code>#content.one-column {...} </code></pre> <p>Page B:</p> <pre><code>#content.two-column {...} </code></pre> http://stackoverflow.com/questions/1791715/css-selector-problem 2 Css Selector problem Adam 2009-11-24T17:42:07Z 2009-11-24T17:45:38Z <p>How do I do a css selector that selects a div that has the class of "someButton" AND "current"?</p> <pre><code>.someButton .current { /* select current with the parent div of .someButton, correct? */ </code></pre> <p>Please help me figure this out!</p> http://stackoverflow.com/questions/996644/jquery-selector-cant-read-from-hidden-field 0 jquery selector can't read from hidden field Andy 2009-06-15T15:07:42Z 2009-11-24T13:04:54Z <p>(<a href="http://stackoverflow.com/questions/997296/jquery-hidden-field-not-accessible-until-document-ready-called">answers aggregated into another question</a>)</p> <p>The following jquery 1.3.2 code works:</p> <pre><code>&lt;input type="select" value="236434" id="ixd" name='ixd' /&gt; &lt;script&gt; console.log( $('#ixd') ); console.log( $("input[name='ixd']") ); &lt;/script&gt; </code></pre> <p>Console shows:</p> <blockquote> <p>[input#ixd 236434] </p> <p>[input#ixd 236434]</p> </blockquote> <p>However setting the input to "hidden" prevents the selectors working. Any clues?</p> <pre><code>&lt;input type="hidden" value="236434" id="ixd" name='ixd' /&gt; &lt;script&gt; console.log( $('#ixd') ); console.log( $("input[name='ixd']") ); &lt;/script&gt; </code></pre> <p>Console shows:</p> <blockquote> <p>[]</p> <p>[]</p> </blockquote> http://stackoverflow.com/questions/1788203/jquery-selection-of-elements-created-run-time 0 jQuery Selection of elements created run time Ajay 2009-11-24T06:24:29Z 2009-11-24T06:47:41Z <p>I have the following scenario:</p> <p>I have a <code>div = "#div1"</code> which is coded in html. I have populated this div with some data coming from a script service [ which means the "a's" are not there initially], and the data is appended to this div as </p> <pre><code>&lt;a href=''&gt;data1&lt;/a&gt; &lt;a href=''&gt;data2&lt;/a&gt; </code></pre> <p>I have a jQuery selector like :</p> <pre><code>$(document).ready(function(){ $("#div1 a").click(function(){ // do something }); }); </code></pre> <p>This is not selecting the element. How do I overcome this problem?</p> http://stackoverflow.com/questions/1788276/i-want-a-function-to-be-fired-whenever-one-option-of-a-radio-element-is-checked 0 I want a function to be fired whenever one option of a radio element is checked. How to do it using Jquery? Steven 2009-11-24T06:41:51Z 2009-11-24T06:47:27Z <p>There are many input radio elements on a web page and each radio element has several options. I want a function to be fired whenever one option of a radio element is checked. How to write the code using Jquery? One input element looks as follows:</p> <pre><code>&lt;div class="below"&gt; &lt;input type="radio" value="information" name="option0"/&gt; information &lt;input type="radio" value="communication" name="option0"/&gt; communication &lt;input type="radio" value="goods" name="option0"/&gt; goods &lt;input type="radio" value="attention" name="option0"/&gt; attention &lt;/div&gt; </code></pre> <p>I wrote the code as follows:</p> <pre><code>$(":radio").checked(function() { alert(this.value); }); </code></pre> <p>But it doesn't work. How to do it?</p> http://stackoverflow.com/questions/1780620/is-it-possible-to-define-an-anonymous-selector-in-objective-c 3 Is it possible to define an anonymous selector in Objective-C? Ben S 2009-11-23T00:50:44Z 2009-11-23T00:58:09Z <p>I'd like to be able to define an inline anonymous selector that a selector wherever a selector is needed as an argument.</p> <p>Is this possible, or do I have to just suck it up and define a method?</p> <p><strong><em>Background</strong>: In my iPhone application I need to update my UI from another thread. To do this I use <code>performSelectorOnMainThread:withObject:waitUntilDone:</code> However, I'd like to be able to get this functionality without having to define a whole other method.</em></p> http://stackoverflow.com/questions/1774470/how-can-i-refer-to-the-calling-element-in-jquery 2 How can I refer to the calling element in JQuery? Steven 2009-11-21T04:02:25Z 2009-11-21T04:14:12Z <p>For example:</p> <pre><code>&lt;input type="text" size="5" id="question'+$qid+'"onKeyUp="checkanswer('+i+')"/&gt;&lt;/div&gt; </code></pre> <p>I want to refer to the <code>"question'+$qid+'"</code> element inside the function checkanswer(), how to do it?</p> <p>Maybe I can do it by <code>onKeyUp="checkanswer('+$qid+')"</code>, is there other elegant way to do it?</p> http://stackoverflow.com/questions/1767469/how-do-i-select-a-group-of-child-elements-from-a-parent-element-of-a-particular-c 0 How do I select a group of child elements from a parent element of a particular class? Robert Harvey 2009-11-19T23:56:09Z 2009-11-19T23:58:36Z <p>If I have a table as in this example:</p> <pre><code>&lt;table class="detailView"&gt; &lt;tr&gt; &lt;td&gt;Value1&lt;/td&gt; &lt;td&gt;value2&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>How do I style the <code>&lt;tr&gt;</code> and <code>&lt;td&gt;</code> elements <strong>only if the table is of</strong> <code>class="detailView"</code>?</p> http://stackoverflow.com/questions/1765042/jquery-how-to-target-very-specific-selectors 1 jQuery, How to target very specific selectors? Jeff 2009-11-19T17:22:43Z 2009-11-19T17:24:42Z <p>Apologies if this has been asked already, I can't find the answer in the <a href="http://docs.jquery.com/" rel="nofollow">jQuery docs</a>.</p> <p>How would I select all <code>.tooltip</code> classes which have a <code>[title]</code> attribute, and the <code>[title]</code> attribute is not empty?</p> <p>In other words, select these:</p> <pre><code>&lt;a href="#" class="tooltip" title="YES"&gt;Foo&lt;/a&gt; &lt;span class="tooltip" title="YES"&gt;Bar&lt;/span&gt; </code></pre> <p>But not these:</p> <pre><code>&lt;a href="#" class="tooltip" title=""&gt;Empty title attribute.&lt;/a&gt; &lt;span class="tooltip"&gt;No title attribute.&lt;/span&gt; </code></pre> http://stackoverflow.com/questions/1758302/in-jquery-how-can-i-select-different-elements-by-the-name-attribute 0 In jQuery, how can I select different elements by the name attribute? BrianH 2009-11-18T19:06:01Z 2009-11-18T19:16:31Z <p>I am trying to loop through some elements in a form (radios, text boxes, and select boxes) and get the value from each element. I am looping through by the name of each element (I don't think I can use ID because a group of radio buttons all have different IDs, but all have the same name).</p> <p>Here are 2 selectors that encompass all the elements I need:</p> <pre><code>$("input[name=" + prop + "]") $("select[name=" + prop + "]") </code></pre> <p>where prop is the loop iterator.</p> <p>I want perform the same operation on both selectors, so I tried to combine them:</p> <pre><code>$("input[name=" + prop + "]", "select[name=" + prop + "]") </code></pre> <p>But that didn't work.</p> <p>Is there a way to combine a search for both input elements and select elements in one selector?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1749540/selecting-one-element-with-multiple-selectors-in-jquery 0 Selecting one element with multiple selectors in Jquery Thorbjørn Reimann-Andersen 2009-11-17T15:13:24Z 2009-11-18T14:42:41Z <p>Hi All,</p> <p>Im kinda new to Jquery, so this might be easy, then again i cant seem to find anything on Google. So here goes.</p> <p>I basically have this:</p> <pre><code>&lt;div&gt; &lt;div id="row1" class="col1" onMouseOver="OnMouseOver(11)"&gt; I dont want to select this &lt;/div&gt; &lt;div id="row1" class="col2" onMouseOver="OnMouseOver(12)"&gt; I want to select this &lt;/div&gt; &lt;div id="row2" class="col1" onMouseOver="OnMouseOver(21)"&gt; I dont want to select this &lt;/div&gt; &lt;div id="row2" class="col2" onMouseOver="OnMouseOver(22)"&gt; I dont want to select this &lt;/div&gt; &lt;/div&gt; </code></pre> <p>and i want to select just the one div(eg. #row1 .col2) to change the css background image, but i cant get it to work. As it is i have a switch/case block that chooses which div to select.</p> <p>i have tried different variaties of this selection:</p> <pre><code>$('#row1').find(".col1").css('background-image', 'url(Images/LosCol1Over.png)') </code></pre> <p>also</p> <pre><code>$('#row1','.col2').css('background-image','url(Images/LosCol1Over.png)') </code></pre> <p>and several other combi i can remember</p> <p>I think the problem is compounded(or confounded maybe :D) by the fact that the columns have the same background-image and this is set in the css by</p> <pre><code>.col1{ background-image: url(Images/LosCol1.png) } .col2{ background-image: url(Images/LosCol1.png) } </code></pre> <p>Any ideas?</p>